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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/animations/animate-viewport-overflow-2.html

Issue 1972273002: Let repaint tests test pixels by default (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 <head> 2 <head>
3 » <script src="../../fast/repaint/resources/text-based-repaint.js" type="t ext/javascript"></script> 3 » <script src="../../fast/repaint/resources/repaint.js" type="text/javascr ipt"></script>
4 <script> 4 <script>
5 function repaintTest() { 5 function repaintTest() {
6 var svg = document.getElementById("svg"); 6 var svg = document.getElementById("svg");
7 svg.pauseAnimations(); 7 svg.pauseAnimations();
8 svg.setCurrentTime(5); 8 svg.setCurrentTime(5);
9 } 9 }
10 </script> 10 </script>
11 <style> 11 <style>
12 div { 12 div {
13 height:100px; width:100px; 13 height:100px; width:100px;
14 } 14 }
15 svg { overflow: visible; } 15 svg { overflow: visible; }
16 </style> 16 </style>
17 </head> 17 </head>
18 <body> 18 <body>
19 <div> 19 <div>
20 <svg id="svg" height="100" width="100" viewbox="0 0 100 100"> 20 <svg id="svg" height="100" width="100" viewbox="0 0 100 100">
21 <rect y="200" width="100" height="100" fill="blue"> 21 <rect y="200" width="100" height="100" fill="blue">
22 <animate attributeName="y" to="150" dur="1s" beg in="1s" fill="freeze"/> 22 <animate attributeName="y" to="150" dur="1s" beg in="1s" fill="freeze"/>
23 </rect> 23 </rect>
24 </svg> 24 </svg>
25 </div> 25 </div>
26 <script> 26 <script>
27 » runRepaintAndPixelTest(); 27 » runRepaintTest();
28 </script> 28 </script>
29 </body> 29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698