| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| 2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
| 3 | 3 |
| 4 <html lang="en"> | 4 <html lang="en"> |
| 5 <head> | 5 <head> |
| 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 7 <title>2D Transform Tests</title> | 7 <title>2D Transform Tests</title> |
| 8 <style type="text/css" media="screen"> | 8 <style type="text/css" media="screen"> |
| 9 .container { | 9 .container { |
| 10 height: 100px; | 10 height: 100px; |
| 11 width: 200px; | 11 width: 200px; |
| 12 margin: 30px; | 12 margin: 30px; |
| 13 outline: 1px solid black; | 13 outline: 1px solid black; |
| 14 } | 14 } |
| 15 .box { | 15 .box { |
| 16 height: 100%; | 16 height: 100%; |
| 17 width: 100%; | 17 width: 100%; |
| 18 background-color: green; | 18 background-color: green; |
| 19 -webkit-transform: rotate(90deg); | 19 transform: rotate(90deg); |
| 20 } | 20 } |
| 21 #results { | 21 #results { |
| 22 margin-top: 100px; | 22 margin-top: 100px; |
| 23 } | 23 } |
| 24 </style> | 24 </style> |
| 25 <script src="resources/transform-test-utils.js" type="text/javascript" charset
="utf-8"></script> | 25 <script src="resources/transform-test-utils.js" type="text/javascript" charset
="utf-8"></script> |
| 26 <script type="text/javascript" charset="utf-8"> | 26 <script type="text/javascript" charset="utf-8"> |
| 27 if (window.testRunner) { | 27 if (window.testRunner) { |
| 28 testRunner.dumpAsText(); | 28 testRunner.dumpAsText(); |
| 29 testRunner.waitUntilDone(); | 29 testRunner.waitUntilDone(); |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 <body onload="runTests()"> | 151 <body onload="runTests()"> |
| 152 | 152 |
| 153 <div class="container"> | 153 <div class="container"> |
| 154 <div id="test-box" class="box"></div> | 154 <div id="test-box" class="box"></div> |
| 155 </div> | 155 </div> |
| 156 | 156 |
| 157 <div id="results"> | 157 <div id="results"> |
| 158 </div> | 158 </div> |
| 159 </body> | 159 </body> |
| 160 </html> | 160 </html> |
| OLD | NEW |