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>Compound 2D Transforms</title> | 7 <title>Compound 2D Transforms</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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 <body onload="runTests()"> | 78 <body onload="runTests()"> |
79 | 79 |
80 <div class="container"> | 80 <div class="container"> |
81 <div id="test-box" class="box"></div> | 81 <div id="test-box" class="box"></div> |
82 </div> | 82 </div> |
83 | 83 |
84 <div id="results"> | 84 <div id="results"> |
85 </div> | 85 </div> |
86 </body> | 86 </body> |
87 </html> | 87 </html> |
OLD | NEW |