| 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 19 matching lines...) Expand all Loading... |
| 30 <head> | 30 <head> |
| 31 <title>CSS Test: Display property with 'inline-grid' value</title> | 31 <title>CSS Test: Display property with 'inline-grid' value</title> |
| 32 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> | 32 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 33 <link rel="help" href="http://dev.w3.org/csswg/css3-grid-align/#grid-dec
laration" /> | 33 <link rel="help" href="http://dev.w3.org/csswg/css3-grid-align/#grid-dec
laration" /> |
| 34 <meta name="flags" content="ahem" /> | 34 <meta name="flags" content="ahem" /> |
| 35 <meta name="assert" content="The 'display' property accepts the 'inline-
grid' value." /> | 35 <meta name="assert" content="The 'display' property accepts the 'inline-
grid' value." /> |
| 36 <script src="testRunnerEnableGrid.js"></script> | 36 <script src="testRunnerEnableGrid.js"></script> |
| 37 <style type="text/css"> | 37 <style type="text/css"> |
| 38 #parent | 38 #parent |
| 39 { | 39 { |
| 40 font: 20px/1 ahem; | 40 font: 20px/1 Ahem; |
| 41 position: relative; | 41 position: relative; |
| 42 width: 13em; | 42 width: 13em; |
| 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; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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> |
| OLD | NEW |