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

Side by Side Diff: LayoutTests/svg/zoom/page/zoom-get-screen-ctm.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 <body style="margin: 0px; padding: 0px;" onload="runRepaintTest()"> 3 <body style="margin: 0px; padding: 0px;" onload="forceStyleRecalc();repaintTest( );">
4 <div style="width: 100px; height: 100px;"></div> 4 <div style="width: 100px; height: 100px;"></div>
5 <svg id="svg1" xmlns="http://www.w3.org/2000/svg" width="400" height="400"> 5 <svg id="svg1" xmlns="http://www.w3.org/2000/svg" width="400" height="400">
6 <rect width="100" height="100" fill="green"/> 6 <rect width="100" height="100" fill="green"/>
7 <svg id="svg2" x="100" y="100" width="300" height="300"> 7 <svg id="svg2" x="100" y="100" width="300" height="300">
8 <rect width="100" height="100" fill="green"/> 8 <rect width="100" height="100" fill="green"/>
9 <svg id="svg3" x="100" y="100" width="200" height="200"> 9 <svg id="svg3" x="100" y="100" width="200" height="200">
10 <rect width="100" height="100" fill="green"/> 10 <rect width="100" height="100" fill="green"/>
11 <svg id="svg4" x="100" y="100" width="100" height="100"> 11 <svg id="svg4" x="100" y="100" width="100" height="100">
12 <rect width="100" height="100" fill="green"/> 12 <rect width="100" height="100" fill="green"/>
13 </svg> 13 </svg>
(...skipping 24 matching lines...) Expand all
38 38
39 shouldBeEqualToString('CTM1', '1, 0, 0, 1, 0, 100'); 39 shouldBeEqualToString('CTM1', '1, 0, 0, 1, 0, 100');
40 shouldBeEqualToString('CTM2', '1, 0, 0, 1, 100, 200'); 40 shouldBeEqualToString('CTM2', '1, 0, 0, 1, 100, 200');
41 shouldBeEqualToString('CTM3', '1, 0, 0, 1, 200, 300'); 41 shouldBeEqualToString('CTM3', '1, 0, 0, 1, 200, 300');
42 shouldBeEqualToString('CTM4', '1, 0, 0, 1, 300, 400'); 42 shouldBeEqualToString('CTM4', '1, 0, 0, 1, 300, 400');
43 debug(''); 43 debug('');
44 } 44 }
45 45
46 </script> 46 </script>
47 <script src="../../../resources/js-test.js"></script> 47 <script src="../../../resources/js-test.js"></script>
48 <script src="../../../fast/repaint/resources/repaint.js"></script> 48 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script>
49 <script src="../resources/testPageZoom.js"></script> 49 <script src="../resources/testPageZoom.js"></script>
50 50
51 </body> 51 </body>
52 </html> 52 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/zoom/page/zoom-foreignObject.svg ('k') | LayoutTests/svg/zoom/page/zoom-getBoundingClientRect.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698