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

Side by Side Diff: LayoutTests/fast/repaint/fixed-scale.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 <html> 1 <html>
2 <head> 2 <head>
3 <link rel="stylesheet" href="resources/default.css"> 3 <link rel="stylesheet" href="resources/default.css">
4 <style> 4 <style>
5 .translated { 5 .translated {
6 transform: scale(2, 2); 6 transform: scale(2, 2);
7 -webkit-transform: scale(2, 2); 7 -webkit-transform: scale(2, 2);
8 -moz-transform: scale(2, 2); 8 -moz-transform: scale(2, 2);
9 } 9 }
10 </style> 10 </style>
11 <script src="resources/repaint.js"></script> 11 <script src="resources/repaint.js"></script>
12 <script> 12 <script>
13 if (window.testRunner) 13 if (window.testRunner)
14 testRunner.dumpAsText(true); 14 testRunner.dumpAsTextWithPixelResults();
15 15
16 function repaintTest() 16 function repaintTest()
17 { 17 {
18 document.getElementById('t').setAttribute("class", "green translated "); 18 document.getElementById('t').setAttribute("class", "green translated ");
19 } 19 }
20 </script> 20 </script>
21 </head> 21 </head>
22 <body style="height:2000px;" onload="runRepaintTest()"> 22 <body style="height:2000px;" onload="runRepaintTest()">
23 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderL ayer fixed position logic needs more basic testing --> 23 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderL ayer fixed position logic needs more basic testing -->
24 <!-- You should see no red on this page. --> 24 <!-- You should see no red on this page. -->
25 <div style="position: absolute; top: 300px; left: 100px;" class="red"></div> 25 <div style="position: absolute; top: 300px; left: 100px;" class="red"></div>
26 <div id="t" style="position: fixed; top: 125px; left: 125px; width: 50px; he ight: 50px;" class="green"></div> 26 <div id="t" style="position: fixed; top: 125px; left: 125px; width: 50px; he ight: 50px;" class="green"></div>
27 <script> 27 <script>
28 window.scrollTo(0, 200); 28 window.scrollTo(0, 200);
29 </script> 29 </script>
30 </body> 30 </body>
31 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698