Update CSS tests to revision 2baa72daab8bf37e3e910a9fd311a1eaa5b0f4a8

This commit is contained in:
James Graham 2015-07-27 17:47:31 +01:00
parent 662c00a810
commit df03062d62
10934 changed files with 428309 additions and 254265 deletions

View file

@ -2,9 +2,9 @@
<html><head>
<title>CSS Grid Layout Test: grid lines shorthands</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,15 +18,15 @@
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-column: "left" / "center";
grid-column: left / center;
}
.b {
background: yellow;
grid-column: "center" / "right";
grid-column: center / right;
}
</style>
</head>
@ -37,4 +37,5 @@
<div class="b">&nbsp;</div>
</div>
</body></html>