Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: LayoutTests/ietestcenter/css3/grid/grid-column-002.htm

Issue 826893003: [CSS Grid Layout] Remove stack from grid-auto-flow syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@remove-stack
Patch Set: Adding perftests Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/ietestcenter/css3/grid/grid-column-002.htm
diff --git a/LayoutTests/ietestcenter/css3/grid/grid-column-002.htm b/LayoutTests/ietestcenter/css3/grid/grid-column-002.htm
index 6ec81b854fb566929f670c83459b41e8b62ff201..bdbe9131627e426fc13ec93e97594be96ba895ee 100644
--- a/LayoutTests/ietestcenter/css3/grid/grid-column-002.htm
+++ b/LayoutTests/ietestcenter/css3/grid/grid-column-002.htm
@@ -36,15 +36,22 @@
<script src="testRunnerEnableGrid.js"></script>
<link rel="stylesheet" href="testRunner.css">
<style type="text/css">
- #test
+ #container
{
+ position: relative;
color: green;
+ font: 20px/1 Ahem;
+ }
+ #test
+ {
+ position: absolute;
+ left: 0;
+ top: 0;
display: -ms-grid;
display: -moz-grid;
display: -o-grid;
display: -webkit-grid;
display: grid;
- font: 20px/1 Ahem;
height: 3em;
-ms-grid-template-columns: auto 1fr;
-moz-grid-template-columns: auto 1fr;
@@ -56,11 +63,6 @@
-o-grid-template-rows: auto 1fr;
-webkit-grid-template-rows: auto 1fr;
grid-template-rows: auto 1fr;
- -ms-grid-auto-flow: stack;
- -moz-grid-auto-flow: stack;
- -o-grid-auto-flow: stack;
- -webkit-grid-auto-flow: stack;
- grid-auto-flow: stack;
}
#griditem
{
@@ -76,13 +78,21 @@
-webkit-grid-row: 1;
grid-row: 1;
}
+ #absolute
+ {
+ position: absolute;
+ left: 0;
+ top: 0;
+ }
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>
- <div id="test">
- <div id="griditem">XXXX</div>
- <div>XXXXX</div>
+ <div id="container">
Julien - ping for review 2015/01/05 13:11:34 Those are external tests so we avoid making big ch
Manuel Rego 2015/01/08 12:50:28 The problem here is that they're wrong according t
Julien - ping for review 2015/01/09 09:13:03 We could probably get both grid items into the fir
+ <div id="test">
+ <div id="griditem">XXXX</div>
+ </div>
+ <div id="absolute">XXXXX</div>
</div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698