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

Side by Side Diff: LayoutTests/svg/zoom/page/zoom-zoom-coords.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" xmlns:xlink="http://www.w3.org/1999/x link"> 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/x link">
2 <head> 2 <head>
3 <style type="text/css"> 3 <style type="text/css">
4 @font-face { 4 @font-face {
5 font-family: "Ahem"; 5 font-family: "Ahem";
6 src: url(../../../resources/Ahem.ttf); 6 src: url(../../../resources/Ahem.ttf);
7 } 7 }
8 body { 8 body {
9 margin:0px; 9 margin:0px;
10 border:0px; 10 border:0px;
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 shouldBeEqualToString('text3.width.toFixed(2)', '98.41'); 180 shouldBeEqualToString('text3.width.toFixed(2)', '98.41');
181 shouldBeEqualToString('text3.height.toFixed(2)', '12.31'); 181 shouldBeEqualToString('text3.height.toFixed(2)', '12.31');
182 shouldBeEqualToString('text3.right.toFixed(2)', '1198.41'); 182 shouldBeEqualToString('text3.right.toFixed(2)', '1198.41');
183 shouldBeEqualToString('text3.bottom.toFixed(2)', '577.64'); 183 shouldBeEqualToString('text3.bottom.toFixed(2)', '577.64');
184 debug(""); 184 debug("");
185 } 185 }
186 </script> 186 </script>
187 187
188 <script src="../../../resources/js-test.js"></script> 188 <script src="../../../resources/js-test.js"></script>
189 <script>var zoomCount = 2;</script> 189 <script>var zoomCount = 2;</script>
190 <script src="../../../fast/repaint/resources/repaint.js"></script> 190 <script src="../../../fast/repaint/resources/text-based-repaint.js"></script>
191 <script src="../resources/testPageZoom.js"></script> 191 <script src="../resources/testPageZoom.js"></script>
192 <script> 192 <script>
193 if (window.testRunner) { 193 if (window.testRunner) {
194 window.jsTestIsAsync = true; 194 window.jsTestIsAsync = true;
195 window.postZoomCallback = executeTest; 195 window.postZoomCallback = executeTest;
196 document.fonts.ready().then(runRepaintTest); 196 document.fonts.ready().then(function() {
197 forceStyleRecalc();
198 repaintTest()
199 });
197 } else { 200 } else {
198 debug("This test only works in DRT."); 201 debug("This test only works in DRT.");
199 } 202 }
200 </script> 203 </script>
201 204
202 </body> 205 </body>
203 </html> 206 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698