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

Side by Side Diff: LayoutTests/ietestcenter/css3/grid/display-grid-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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 #test 44 #test
45 { 45 {
46 color: green; 46 color: green;
47 display: -ms-inline-grid; 47 display: -ms-inline-grid;
48 display: -moz-inline-grid; 48 display: -moz-inline-grid;
49 display: -o-inline-grid; 49 display: -o-inline-grid;
50 display: -webkit-inline-grid; 50 display: -webkit-inline-grid;
51 display: inline-grid; 51 display: inline-grid;
52 height: 3em; 52 height: 3em;
53 -ms-grid-definition-columns: auto 1fr; 53 -ms-grid-template-columns: auto 1fr;
54 -moz-grid-definition-columns: auto 1fr; 54 -moz-grid-template-columns: auto 1fr;
55 -o-grid-definition-columns: auto 1fr; 55 -o-grid-template-columns: auto 1fr;
56 -webkit-grid-definition-columns: auto 1fr; 56 -webkit-grid-template-columns: auto 1fr;
57 grid-definition-columns: auto 1fr; 57 grid-template-columns: auto 1fr;
58 -ms-grid-definition-rows: auto 1fr; 58 -ms-grid-template-rows: auto 1fr;
59 -moz-grid-definition-rows: auto 1fr; 59 -moz-grid-template-rows: auto 1fr;
60 -o-grid-definition-rows: auto 1fr; 60 -o-grid-template-rows: auto 1fr;
61 -webkit-grid-definition-rows: auto 1fr; 61 -webkit-grid-template-rows: auto 1fr;
62 grid-definition-rows: auto 1fr; 62 grid-template-rows: auto 1fr;
63 } 63 }
64 #title 64 #title
65 { 65 {
66 -ms-grid-column: 1; 66 -ms-grid-column: 1;
67 -moz-grid-column: 1; 67 -moz-grid-column: 1;
68 -o-grid-column: 1; 68 -o-grid-column: 1;
69 -webkit-grid-column: 1; 69 -webkit-grid-column: 1;
70 grid-column: 1; 70 grid-column: 1;
71 -ms-grid-row: 1; 71 -ms-grid-row: 1;
72 -moz-grid-row: 1; 72 -moz-grid-row: 1;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 <div id="absolute"> 106 <div id="absolute">
107 XXXXXXXXX<span>XXXX</span> 107 XXXXXXXXX<span>XXXX</span>
108 </div> 108 </div>
109 <div id="test"> 109 <div id="test">
110 <div id="board">XXXX</div> 110 <div id="board">XXXX</div>
111 <div id="title">XXXXX</div> 111 <div id="title">XXXXX</div>
112 </div> 112 </div>
113 </div> 113 </div>
114 </body> 114 </body>
115 </html> 115 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698