Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Side by Side Diff: LayoutTests/compositing/geometry/assert-marquee-timer.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698