OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 .content { | 5 .content { |
6 -webkit-transform: translateZ(1px); | 6 transform: translateZ(1px); |
7 display: block; | 7 display: block; |
8 width: 100px; | 8 width: 100px; |
9 height: 30px; | 9 height: 30px; |
10 background-color: green; | 10 background-color: green; |
11 } | 11 } |
12 </style> | 12 </style> |
13 </head> | 13 </head> |
14 <body> | 14 <body> |
15 <!-- This test passes if it doesn't trigger an ASSERT in debug mode. It
makes sure that the timer | 15 <!-- This test passes if it doesn't trigger an ASSERT in debug mode. It
makes sure that the timer |
16 used to update the marquee will not run before the layout is done. -
-> | 16 used to update the marquee will not run before the layout is done. -
-> |
(...skipping 28 matching lines...) Expand all Loading... |
45 document.getElementById("container").remove(); | 45 document.getElementById("container").remove(); |
46 textNode.nodeValue = ""; | 46 textNode.nodeValue = ""; |
47 clearInterval(interval); | 47 clearInterval(interval); |
48 if (window.testRunner) | 48 if (window.testRunner) |
49 testRunner.notifyDone(); | 49 testRunner.notifyDone(); |
50 } | 50 } |
51 }, 10); | 51 }, 10); |
52 </script> | 52 </script> |
53 </body> | 53 </body> |
54 </html> | 54 </html> |
OLD | NEW |