OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/run-after-display.js"></script> | 2 <script src="../../resources/run-after-display.js"></script> |
3 <style> | 3 <style> |
4 .container { | 4 .container { |
5 width: 100px; | 5 width: 100px; |
6 height:100px; | 6 height:100px; |
7 position:absolute; | 7 position:absolute; |
8 -webkit-transform:translateZ(0); | 8 transform:translateZ(0); |
9 overflow:auto; | 9 overflow:auto; |
10 } | 10 } |
11 | 11 |
12 .content { | 12 .content { |
13 -webkit-transform: translateZ(0); | 13 transform: translateZ(0); |
14 position:absolute; | 14 position:absolute; |
15 width:10px; | 15 width:10px; |
16 height:10px; | 16 height:10px; |
17 } | 17 } |
18 | 18 |
19 .tall { | 19 .tall { |
20 height:200px; | 20 height:200px; |
21 } | 21 } |
22 | 22 |
23 .wide { | 23 .wide { |
(...skipping 30 matching lines...) Expand all Loading... |
54 testRunner.notifyDone(); | 54 testRunner.notifyDone(); |
55 } | 55 } |
56 } | 56 } |
57 | 57 |
58 if (window.testRunner) { | 58 if (window.testRunner) { |
59 testRunner.dumpAsText(); | 59 testRunner.dumpAsText(); |
60 testRunner.waitUntilDone(); | 60 testRunner.waitUntilDone(); |
61 } | 61 } |
62 runAfterDisplay(finishTest); | 62 runAfterDisplay(finishTest); |
63 </script> | 63 </script> |
OLD | NEW |