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

Side by Side Diff: LayoutTests/compositing/nested-direct-image-compositing.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Check to disappear the afterimage after changing the style of an img tag. </title> 4 <title>Check to disappear the afterimage after changing the style of an img tag. </title>
5 <style type="text/css"> 5 <style type="text/css">
6 div.cell 6 div.cell
7 { 7 {
8 -webkit-transform: translate3d(0, 0, 0); 8 -webkit-transform: translate3d(0, 0, 0);
9 } 9 }
10 10
(...skipping 26 matching lines...) Expand all
37 setTimeout(function() { 37 setTimeout(function() {
38 if (window.testRunner) { 38 if (window.testRunner) {
39 window.testRunner.notifyDone(); 39 window.testRunner.notifyDone();
40 } 40 }
41 }, 10); 41 }, 10);
42 } 42 }
43 43
44 window.onload = function () 44 window.onload = function ()
45 { 45 {
46 if (window.testRunner) { 46 if (window.testRunner) {
47 window.testRunner.dumpAsText(true); 47 window.testRunner.dumpAsTextWithPixelResults();
48 window.testRunner.waitUntilDone(); 48 window.testRunner.waitUntilDone();
49 } 49 }
50 50
51 setTimeout(function() { 51 setTimeout(function() {
52 updateStack(); 52 updateStack();
53 }, 200); 53 }, 200);
54 } 54 }
55 </script> 55 </script>
56 56
57 </body> 57 </body>
58 </html> 58 </html>
59 59
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698