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

Side by Side Diff: LayoutTests/ietestcenter/css3/grid/grid-column-003.htm

Issue 333563003: [CSS Grid Layout] Update grid-auto-flow to the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Attempt 2 to fix win_blink_rel Created 6 years, 5 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;
59 } 64 }
60 #griditem 65 #griditem
61 { 66 {
62 color: green; 67 color: green;
63 -ms-grid-column: 1; 68 -ms-grid-column: 1;
64 -moz-grid-column: 1; 69 -moz-grid-column: 1;
65 -o-grid-column: 1; 70 -o-grid-column: 1;
66 -webkit-grid-column: 1; 71 -webkit-grid-column: 1;
67 grid-column: 1; 72 grid-column: 1;
68 -ms-grid-row: 1; 73 -ms-grid-row: 1;
69 -moz-grid-row: 1; 74 -moz-grid-row: 1;
70 -o-grid-row: 1; 75 -o-grid-row: 1;
71 -webkit-grid-row: 1; 76 -webkit-grid-row: 1;
72 grid-row: 1; 77 grid-row: 1;
73 } 78 }
74 span 79 span
75 { 80 {
76 color: red; 81 color: red;
77 } 82 }
78 </style> 83 </style>
79 </head> 84 </head>
80 <body> 85 <body>
81 <p>Test passes if there is no red visible on the page.</p> 86 <p>Test passes if there is no red visible on the page.</p>
82 <div id="test"> 87 <div id="test">
83 <div><span>XX</span>X<span>XX</span></div> 88 <div><span>XX</span>X<span>XX</span></div>
84 <div id="griditem">XX XX</div> 89 <div id="griditem">XX XX</div>
85 </div> 90 </div>
86 </body> 91 </body>
87 </html> 92 </html>
OLDNEW
« no previous file with comments | « LayoutTests/ietestcenter/css3/grid/grid-column-002.htm ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698