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

Side by Side Diff: LayoutTests/ietestcenter/css3/grid/grid-column-003.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, 11 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR /xhtml1/DTD/xhtml1-strict.dtd"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR /xhtml1/DTD/xhtml1-strict.dtd">
2 <!-- 2 <!--
3 Internet Explorer Test Pages Copyright © 2012 Microsoft Corporation. All rights reserved. 3 Internet Explorer Test Pages Copyright © 2012 Microsoft Corporation. All rights reserved.
4 4
5 Redistribution and use in source and binary forms, with or without modification , 5 Redistribution and use in source and binary forms, with or without modification ,
6 are permitted provided that the following conditions are met: 6 are permitted provided that the following conditions are met:
7 7
8 Redistributions of source code must retain the above copyright notice, this lis t of 8 Redistributions of source code must retain the above copyright notice, this lis t of
9 conditions and the following disclaimer. 9 conditions and the following disclaimer.
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 -ms-grid-template-columns: auto 1fr; 49 -ms-grid-template-columns: auto 1fr;
50 -moz-grid-template-columns: auto 1fr; 50 -moz-grid-template-columns: auto 1fr;
51 -o-grid-template-columns: auto 1fr; 51 -o-grid-template-columns: auto 1fr;
52 -webkit-grid-template-columns: auto 1fr; 52 -webkit-grid-template-columns: auto 1fr;
53 grid-template-columns: auto 1fr; 53 grid-template-columns: auto 1fr;
54 -ms-grid-template-rows: auto 1fr; 54 -ms-grid-template-rows: auto 1fr;
55 -moz-grid-template-rows: auto 1fr; 55 -moz-grid-template-rows: auto 1fr;
56 -o-grid-template-rows: auto 1fr; 56 -o-grid-template-rows: auto 1fr;
57 -webkit-grid-template-rows: auto 1fr; 57 -webkit-grid-template-rows: auto 1fr;
58 grid-template-rows: auto 1fr; 58 grid-template-rows: auto 1fr;
59 -ms-grid-auto-flow: stack;
60 -moz-grid-auto-flow: stack;
61 -o-grid-auto-flow: stack;
62 -webkit-grid-auto-flow: stack;
63 grid-auto-flow: stack;
64 } 59 }
65 #griditem 60 #griditem
66 { 61 {
67 color: green; 62 color: green;
68 -ms-grid-column: 1; 63 -ms-grid-column: 1;
69 -moz-grid-column: 1; 64 -moz-grid-column: 1;
70 -o-grid-column: 1; 65 -o-grid-column: 1;
71 -webkit-grid-column: 1; 66 -webkit-grid-column: 1;
72 grid-column: 1; 67 grid-column: 1;
73 -ms-grid-row: 1; 68 -ms-grid-row: 1;
74 -moz-grid-row: 1; 69 -moz-grid-row: 1;
75 -o-grid-row: 1; 70 -o-grid-row: 1;
76 -webkit-grid-row: 1; 71 -webkit-grid-row: 1;
77 grid-row: 1; 72 grid-row: 1;
78 } 73 }
74 #row1column1
75 {
76 -ms-grid-column: 1;
77 -moz-grid-column: 1;
78 -o-grid-column: 1;
79 -webkit-grid-column: 1;
80 grid-column: 1;
81 -ms-grid-row: 1;
82 -moz-grid-row: 1;
83 -o-grid-row: 1;
84 -webkit-grid-row: 1;
85 grid-row: 1;
86 }
79 span 87 span
80 { 88 {
81 color: red; 89 color: red;
82 } 90 }
83 </style> 91 </style>
84 </head> 92 </head>
85 <body> 93 <body>
86 <p>Test passes if there is no red visible on the page.</p> 94 <p>Test passes if there is no red visible on the page.</p>
87 <div id="test"> 95 <div id="test">
88 <div><span>XX</span>X<span>XX</span></div> 96 <div id="row1column1"><span>XX</span>X<span>XX</span></div>
89 <div id="griditem">XX XX</div> 97 <div id="griditem">XX XX</div>
90 </div> 98 </div>
91 </body> 99 </body>
92 </html> 100 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698