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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/change-transform.html

Issue 1994373002: Convert some repaint tests into ref tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="resources/text-based-repaint.js"></script> 3 <script src="resources/text-based-repaint.js"></script>
4 <script type="text/javascript" charset="utf-8"> 4 <script type="text/javascript" charset="utf-8">
5 function repaintTest() 5 function repaintTest()
6 { 6 {
7 var target = document.getElementById("square"); 7 var target = document.getElementById("square");
8 target.style.webkitTransform = "scale(0.5, 0.5)"; 8 target.style.webkitTransform = "scale(0.5, 0.5)";
9 } 9 }
10 </script> 10 </script>
11 <style type="text/css" media="screen"> 11 <style type="text/css" media="screen">
12 body { 12 body {
13 margin: 10px; 13 margin: 10px;
14 } 14 }
15 #square { 15 #square {
16 width: 100px; 16 width: 100px;
17 height: 100px; 17 height: 100px;
18 background: red; 18 background: red;
19 } 19 }
20 #overlay { 20 #overlay {
21 position: absolute; 21 position: absolute;
22 left: 35px; 22 left: 35px;
23 top: 35px; 23 top: 35px;
24 width: 50px; 24 width: 50px;
25 height: 50px; 25 height: 50px;
26 background: green 26 background: green
27 } 27 }
28 </style> 28 </style>
29 </head> 29 </head>
30 <body onload="runRepaintTest()"> 30 <body onload="runRepaintAndPixelTest()">
31 <div id="square"></div> 31 <div id="square"></div>
32 <div id="overlay"></div> 32 <div id="overlay"></div>
33 33
34 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=19623">https://bugs.webkit.o rg/show_bug.cgi?id=19623</a></p> 34 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=19623">https://bugs.webkit.o rg/show_bug.cgi?id=19623</a></p>
35 <p>Test for incomplete repaint when a non-layer object gains a transform. You sh ould see a green square above. If you see any red, the test has failed.</p> 35 <p>Test for incomplete repaint when a non-layer object gains a transform. You sh ould see a green square above. If you see any red, the test has failed.</p>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698