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

Side by Side Diff: LayoutTests/svg/zoom/page/zoom-clip-path.html

Issue 208583004: Remove repaint.js from svg tests that pass without it (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove use-instanceRoot-event-bubbling.xhtml Created 6 years, 9 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 <style> 4 <style>
5 div { 5 div {
6 position: absolute; 6 position: absolute;
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 background-color: green; 9 background-color: green;
10 } 10 }
11 </style> 11 </style>
12 </head> 12 </head>
13 <body onload="runRepaintTest()"> 13 <body onload="forceStyleRecalc();repaintTest();">
14 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"> 14 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
15 <defs> 15 <defs>
16 <clipPath id="clip1"> 16 <clipPath id="clip1">
17 <rect width="50" height="50"/> 17 <rect width="50" height="50"/>
18 </clipPath> 18 </clipPath>
19 19
20 <clipPath id="clip2"> 20 <clipPath id="clip2">
21 <rect width="50" height="50"/> 21 <rect width="50" height="50"/>
22 <rect x="50" y="50" width="50" height="50"/> 22 <rect x="50" y="50" width="50" height="50"/>
23 </clipPath> 23 </clipPath>
(...skipping 13 matching lines...) Expand all
37 37
38 <!-- The 4x4 checkerboard should stay well-formed when zoomed --> 38 <!-- The 4x4 checkerboard should stay well-formed when zoomed -->
39 <div style="-webkit-transform: translate(10px, 10px); top: 0px; left: 0px; - webkit-clip-path: url(#clip1);"></div> 39 <div style="-webkit-transform: translate(10px, 10px); top: 0px; left: 0px; - webkit-clip-path: url(#clip1);"></div>
40 <div style="-webkit-transform: translate(60px, 60px); top: 0px; left: 0px; - webkit-clip-path: url(#clip1);"></div> 40 <div style="-webkit-transform: translate(60px, 60px); top: 0px; left: 0px; - webkit-clip-path: url(#clip1);"></div>
41 <div style="-webkit-transform: translate(110px, 10px); top: 0px; left: 0px; -webkit-clip-path: url(#clip2);"></div> 41 <div style="-webkit-transform: translate(110px, 10px); top: 0px; left: 0px; -webkit-clip-path: url(#clip2);"></div>
42 <div style="-webkit-transform: translate(10px, 110px); top: 0px; left: 0px; -webkit-clip-path: url(#clip3);"></div> 42 <div style="-webkit-transform: translate(10px, 110px); top: 0px; left: 0px; -webkit-clip-path: url(#clip3);"></div>
43 <div style="-webkit-transform: translate(60px, 160px); top: 0px; left: 0px; -webkit-clip-path: url(#clip3);"></div> 43 <div style="-webkit-transform: translate(60px, 160px); top: 0px; left: 0px; -webkit-clip-path: url(#clip3);"></div>
44 <div style="-webkit-transform: translate(110px, 110px); top: 0px; left: 0px; -webkit-clip-path: url(#clip4);"></div> 44 <div style="-webkit-transform: translate(110px, 110px); top: 0px; left: 0px; -webkit-clip-path: url(#clip4);"></div>
45 45
46 <script>var zoomCount = 4; window.shouldZoomOut = false;</script> 46 <script>var zoomCount = 4; window.shouldZoomOut = false;</script>
47 <script src="../../../fast/repaint/resources/repaint.js"></script> 47 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script >
48 <script src="../resources/testPageZoom.js"></script> 48 <script src="../resources/testPageZoom.js"></script>
49 </body> 49 </body>
50 </html> 50 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/zoom/page/zoom-background-images.html ('k') | LayoutTests/svg/zoom/page/zoom-coords-viewattr-01-b.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698