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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/svg-image-par-resize.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
3 <script> 3 <script>
4 window.testIsAsync = true; 4 window.testIsAsync = true;
5 </script> 5 </script>
6 <body onload="runRepaintTest()"> 6 <body onload="runRepaintAndPixelTest()">
7 <svg width="300" height="200"> 7 <svg width="300" height="200">
8 <image width="200" height="200" preserveAspectRatio="none" 8 <image width="200" height="200" preserveAspectRatio="none"
9 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50'><rect width='100%' height='100%' fill='green'/></svg>"></ image> 9 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50'><rect width='100%' height='100%' fill='green'/></svg>"></ image>
10 </svg> 10 </svg>
11 <script> 11 <script>
12 function repaintTest() { 12 function repaintTest() {
13 document.querySelector('image').setAttribute('width', 100); 13 document.querySelector('image').setAttribute('width', 100);
14 requestAnimationFrame(function() { 14 requestAnimationFrame(function() {
15 requestAnimationFrame(function() { 15 requestAnimationFrame(function() {
16 finishRepaintTest(); 16 finishRepaintTest();
17 }); 17 });
18 }); 18 });
19 } 19 }
20 </script> 20 </script>
21 </body> 21 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698