| Index: LayoutTests/svg/as-image/set-img-height.html
|
| diff --git a/LayoutTests/svg/as-image/set-img-height.html b/LayoutTests/svg/as-image/set-img-height.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..83577800cbed067be972440b4d30a65767147f95
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/as-image/set-img-height.html
|
| @@ -0,0 +1,21 @@
|
| +<!doctype html>
|
| +<head>
|
| + <script src="../../fast/repaint/resources/text-based-repaint.js" type="text/javascript"></script>
|
| + <style>
|
| + #scaleMe {
|
| + width:100px;
|
| + height:200px;
|
| + background: yellow;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body onload="runRepaintAndPixelTest()">
|
| +<script>
|
| +function repaintTest() {
|
| + document.getElementById("scaleMe").style.height="100px";
|
| +}
|
| +</script>
|
| +<div>
|
| + <img id="scaleMe" src="resources/circle-200px-none.svg">
|
| +</div>
|
| +</body>
|
|
|