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

Side by Side Diff: LayoutTests/ietestcenter/css3/grid/grid-items-002.htm

Issue 146773002: [CSS Grid Layout] Rename grid-definition-{columns|rows} to match the new syntax (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed renaming issues with some tests. Created 6 years, 10 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 26 matching lines...) Expand all
37 <style type="text/css"> 37 <style type="text/css">
38 #test 38 #test
39 { 39 {
40 background: red; 40 background: red;
41 display: -ms-grid; 41 display: -ms-grid;
42 display: -moz-grid; 42 display: -moz-grid;
43 display: -o-grid; 43 display: -o-grid;
44 display: -webkit-grid; 44 display: -webkit-grid;
45 display: grid; 45 display: grid;
46 font: 20px/1 ahem; 46 font: 20px/1 ahem;
47 -ms-grid-definition-columns: auto 1fr; 47 -ms-grid-template-columns: auto 1fr;
48 -moz-grid-definition-columns: auto 1fr; 48 -moz-grid-template-columns: auto 1fr;
49 -o-grid-definition-columns: auto 1fr; 49 -o-grid-template-columns: auto 1fr;
50 -webkit-grid-definition-columns: auto 1fr; 50 -webkit-grid-template-columns: auto 1fr;
51 grid-definition-columns: auto 1fr; 51 grid-template-columns: auto 1fr;
52 -ms-grid-definition-rows: auto 1fr; 52 -ms-grid-template-rows: auto 1fr;
53 -moz-grid-definition-rows: auto 1fr; 53 -moz-grid-template-rows: auto 1fr;
54 -o-grid-definition-rows: auto 1fr; 54 -o-grid-template-rows: auto 1fr;
55 -webkit-grid-definition-rows: auto 1fr; 55 -webkit-grid-template-rows: auto 1fr;
56 grid-definition-rows: auto 1fr; 56 grid-template-rows: auto 1fr;
57 width: 12em; 57 width: 12em;
58 } 58 }
59 div div 59 div div
60 { 60 {
61 color: green; 61 color: green;
62 -ms-grid-column: 1; 62 -ms-grid-column: 1;
63 -moz-grid-column: 1; 63 -moz-grid-column: 1;
64 -o-grid-column: 1; 64 -o-grid-column: 1;
65 -webkit-grid-column: 1; 65 -webkit-grid-column: 1;
66 grid-column: 1; 66 grid-column: 1;
(...skipping 22 matching lines...) Expand all
89 </style> 89 </style>
90 </head> 90 </head>
91 <body> 91 <body>
92 <p>Test passes if there is no red visible on the page.</p> 92 <p>Test passes if there is no red visible on the page.</p>
93 <div id="test"> 93 <div id="test">
94 <img alt="1em x 6em block" src="../support/green_color.png" /> 94 <img alt="1em x 6em block" src="../support/green_color.png" />
95 <div>XXXXXX</div> 95 <div>XXXXXX</div>
96 </div> 96 </div>
97 </body> 97 </body>
98 </html> 98 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698