OLD | NEW |
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 -ms-grid-template-columns: auto 1fr; | 48 -ms-grid-template-columns: auto 1fr; |
49 -moz-grid-template-columns: auto 1fr; | 49 -moz-grid-template-columns: auto 1fr; |
50 -o-grid-template-columns: auto 1fr; | 50 -o-grid-template-columns: auto 1fr; |
51 -webkit-grid-template-columns: auto 1fr; | 51 -webkit-grid-template-columns: auto 1fr; |
52 grid-template-columns: auto 1fr; | 52 grid-template-columns: auto 1fr; |
53 -ms-grid-template-rows: auto 1fr; | 53 -ms-grid-template-rows: auto 1fr; |
54 -moz-grid-template-rows: auto 1fr; | 54 -moz-grid-template-rows: auto 1fr; |
55 -o-grid-template-rows: auto 1fr; | 55 -o-grid-template-rows: auto 1fr; |
56 -webkit-grid-template-rows: auto 1fr; | 56 -webkit-grid-template-rows: auto 1fr; |
57 grid-template-rows: auto 1fr; | 57 grid-template-rows: auto 1fr; |
58 -ms-grid-auto-flow: stack; | |
59 -moz-grid-auto-flow: stack; | |
60 -o-grid-auto-flow: stack; | |
61 -webkit-grid-auto-flow: stack; | |
62 grid-auto-flow: stack; | |
63 } | 58 } |
64 #griditem | 59 #griditem |
65 { | 60 { |
66 color: green; | 61 color: green; |
67 -ms-grid-column: 1; | 62 -ms-grid-column: 1; |
68 -moz-grid-column: 1; | 63 -moz-grid-column: 1; |
69 -o-grid-column: 1; | 64 -o-grid-column: 1; |
70 -webkit-grid-column: 1; | 65 -webkit-grid-column: 1; |
71 grid-column: 1; | 66 grid-column: 1; |
72 -ms-grid-row: 1; | 67 -ms-grid-row: 1; |
73 -moz-grid-row: 1; | 68 -moz-grid-row: 1; |
74 -o-grid-row: 1; | 69 -o-grid-row: 1; |
75 -webkit-grid-row: 1; | 70 -webkit-grid-row: 1; |
76 grid-row: 1; | 71 grid-row: 1; |
77 } | 72 } |
| 73 #row1column1 |
| 74 { |
| 75 -ms-grid-column: 1; |
| 76 -moz-grid-column: 1; |
| 77 -o-grid-column: 1; |
| 78 -webkit-grid-column: 1; |
| 79 grid-column: 1; |
| 80 -ms-grid-row: 1; |
| 81 -moz-grid-row: 1; |
| 82 -o-grid-row: 1; |
| 83 -webkit-grid-row: 1; |
| 84 grid-row: 1; |
| 85 } |
78 span | 86 span |
79 { | 87 { |
80 color: red; | 88 color: red; |
81 } | 89 } |
82 </style> | 90 </style> |
83 </head> | 91 </head> |
84 <body> | 92 <body> |
85 <p>Test passes if there is no red visible on the page.</p> | 93 <p>Test passes if there is no red visible on the page.</p> |
86 <div id="test"> | 94 <div id="test"> |
87 <div><span>XX</span>X<span>XX</span></div> | 95 <div id="row1column1"><span>XX</span>X<span>XX</span></div> |
88 <div id="griditem">XX XX</div> | 96 <div id="griditem">XX XX</div> |
89 </div> | 97 </div> |
90 </body> | 98 </body> |
91 </html> | 99 </html> |
OLD | NEW |