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

Side by Side Diff: LayoutTests/svg/zoom/page/zoom-hixie-rendering-model-004.xhtml

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 <html xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head> 2 <head>
3 <title>Zooming</title> 3 <title>Zooming</title>
4 <style type="text/css"> 4 <style type="text/css">
5 p { color: navy; } 5 p { color: navy; }
6 div { margin: 1em 0; height: 100px; width: 100px; background: navy; } 6 div { margin: 1em 0; height: 100px; width: 100px; background: navy; }
7 </style> 7 </style>
8 </head> 8 </head>
9 <body onload="runRepaintTest()"> 9 <body onload="forceStyleRecalc();repaintTest();">
10 <p>Zoom in and out. The following two squares should always be the same size.< /p> 10 <p>Zoom in and out. The following two squares should always be the same size.< /p>
11 <div></div> 11 <div></div>
12 <svg height="100px" width="100px" viewBox="0 0 100 100" xmlns="http://www.w3.o rg/2000/svg"> 12 <svg height="100px" width="100px" viewBox="0 0 100 100" xmlns="http://www.w3.o rg/2000/svg">
13 <rect x="0" y="0" width="100" height="100" fill="navy"/> 13 <rect x="0" y="0" width="100" height="100" fill="navy"/>
14 </svg> 14 </svg>
15 <script>var zoomCount = 2;</script> 15 <script>var zoomCount = 2;</script>
16 <script src="../../../fast/repaint/resources/repaint.js"></script> 16 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script>
17 <script src="../resources/testPageZoom.js"></script> 17 <script src="../resources/testPageZoom.js"></script>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698