OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <style type="text/css" media="screen"> | 5 <style type="text/css" media="screen"> |
6 .container { | 6 .container { |
7 position: absolute; | 7 position: absolute; |
8 margin: 20px; | 8 margin: 20px; |
9 width: 120px; | 9 width: 120px; |
10 height: 120px; | 10 height: 120px; |
11 padding: 10px; | 11 padding: 10px; |
12 border: 1px solid black; | 12 border: 1px solid black; |
13 clip: rect(10px, 80px, 80px, 20px); | 13 clip: rect(10px, 80px, 80px, 20px); |
14 } | 14 } |
15 | 15 |
16 .intermediate { | 16 .intermediate { |
17 width: 100px; | 17 width: 100px; |
18 height: 100px; | 18 height: 100px; |
19 padding: 10px; | 19 padding: 10px; |
20 border: 1px solid blue; | 20 border: 1px solid blue; |
21 } | 21 } |
22 | 22 |
23 .box { | 23 .box { |
24 width: 100px; | 24 width: 100px; |
25 height: 150px; | 25 height: 150px; |
26 background-color: gray; | 26 background-color: gray; |
27 -webkit-transform: translateZ(1px); | 27 transform: translateZ(1px); |
28 } | 28 } |
29 | 29 |
30 pre { | 30 pre { |
31 margin-top: 360px; | 31 margin-top: 360px; |
32 } | 32 } |
33 </style> | 33 </style> |
34 <script type="text/javascript" charset="utf-8"> | 34 <script type="text/javascript" charset="utf-8"> |
35 if (window.testRunner) { | 35 if (window.testRunner) { |
36 testRunner.dumpAsText(); | 36 testRunner.dumpAsText(); |
37 testRunner.waitUntilDone(); | 37 testRunner.waitUntilDone(); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 </div> | 80 </div> |
81 </div> | 81 </div> |
82 </div> | 82 </div> |
83 | 83 |
84 <pre id="layers"> | 84 <pre id="layers"> |
85 In DRT, layer tree goes here. | 85 In DRT, layer tree goes here. |
86 </pre> | 86 </pre> |
87 | 87 |
88 </body> | 88 </body> |
89 </html> | 89 </html> |
OLD | NEW |