mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
Update CSS tests to revision 2baa72daab8bf37e3e910a9fd311a1eaa5b0f4a8
This commit is contained in:
@@ -2,9 +2,9 @@
|
||||
<html><head>
|
||||
<title>CSS Grid Layout Test: grid lines</title>
|
||||
<link href="mailto:myst.dg@gmail.com" rel="author" title="Leo Deng">
|
||||
<link href="http://www.w3.org/TR/css-grid-1/#grid-line" rel="help">
|
||||
<link href="http://www.w3.org/TR/css-grid-1/#common-uses-named-lines" rel="help">
|
||||
<link href="reference/grid-layout-basic-ref.htm" rel="match">
|
||||
<meta content="the subgrid layout should behave the same as reference." name="assert">
|
||||
<meta content="the layout should behave the same as reference." name="assert">
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
@@ -18,17 +18,17 @@
|
||||
width: 150px;
|
||||
background: #eee;
|
||||
display: grid;
|
||||
grid-definition-columns: "left" 100px "center" 50px "right";
|
||||
grid-template-columns: [left] 100px [center] 50px [right];
|
||||
}
|
||||
.a {
|
||||
background: blue;
|
||||
grid-start: "left";
|
||||
grid-end: "center";
|
||||
grid-column-start: left;
|
||||
grid-column-end: center;
|
||||
}
|
||||
.b {
|
||||
background: yellow;
|
||||
grid-start: "center";
|
||||
grid-end: "right";
|
||||
grid-column-start: center;
|
||||
grid-column-end: right;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@@ -39,4 +39,5 @@
|
||||
<div class="b"> </div>
|
||||
</div>
|
||||
|
||||
|
||||
</body></html>
|
||||
Reference in New Issue
Block a user