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

Side by Side Diff: LayoutTests/svg/as-image/set-img-height.html

Issue 262963003: Output repaint rects for svg repaint tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove changes to two tests Created 6 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <head> 2 <head>
3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/ javascript"></script> 3 <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/ javascript"></script>
4 <style> 4 <style>
5 #scaleMe { 5 #scaleMe {
6 width:100px; 6 width:100px;
7 height:200px; 7 height:200px;
8 background: yellow; 8 background: yellow;
9 } 9 }
10 </style> 10 </style>
11 </head> 11 </head>
12 <body onload="runRepaintAndPixelTest()"> 12 <body onload="runRepaintAndPixelTest()">
13 <script> 13 <script>
14 window.outputRepaintRects = false;
14 function repaintTest() { 15 function repaintTest() {
15 document.getElementById("scaleMe").style.height="100px"; 16 document.getElementById("scaleMe").style.height="100px";
16 } 17 }
17 </script> 18 </script>
18 <div> 19 <div>
19 <img id="scaleMe" src="resources/circle-200px-none.svg"> 20 <img id="scaleMe" src="resources/circle-200px-none.svg">
20 </div> 21 </div>
21 </body> 22 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698