| 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>Testing accuracy of transform evaluation</title> | 7 <title>Testing accuracy of transform evaluation</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 17 matching lines...) Expand all Loading... |
| 47 <body onload="runTests()"> | 47 <body onload="runTests()"> |
| 48 | 48 |
| 49 <div class="container"> | 49 <div class="container"> |
| 50 <div id="test-box" class="box"></div> | 50 <div id="test-box" class="box"></div> |
| 51 </div> | 51 </div> |
| 52 | 52 |
| 53 <div id="results"> | 53 <div id="results"> |
| 54 </div> | 54 </div> |
| 55 </body> | 55 </body> |
| 56 </html> | 56 </html> |
| OLD | NEW |