Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / svg / as-image / set-img-height.html
1 <!doctype html>
2 <head>
3     <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script>
4     <style>
5     #scaleMe {
6         width:100px;
7         height:200px;
8         background: yellow;
9     }
10     </style>
11 </head>
12 <body onload="runRepaintAndPixelTest()">
13 <script>
14 window.outputRepaintRects = false;
15 function repaintTest() {
16     document.getElementById("scaleMe").style.height="100px";
17 }
18 </script>
19 <div>
20     <img id="scaleMe" src="resources/circle-200px-none.svg">
21 </div>
22 </body>