blob: 7afa8610779fb9af7917281152ffbd5c2f261d6e [file] [log] [blame]
// [Name] SVGImageElement-svgdom-width-prop.js
// [Expected rendering result] image at 0x0 size 200x200 - and a series of PASS messages
description("Tests dynamic updates of the 'width' property of the SVGImageElement object")
createSVGTestCase();
var imageElement = createSVGElement("image");
imageElement.setAttributeNS(xlinkNS, "xlink:href", "../custom/resources/green-checker.png");
imageElement.setAttribute("preserveAspectRatio", "none");
imageElement.setAttribute("x", "0");
imageElement.setAttribute("y", "0");
imageElement.setAttribute("width", "100");
imageElement.setAttribute("height", "200");
rootSVGElement.appendChild(imageElement);
shouldBe("imageElement.width.baseVal.value", "100");
function repaintTest() {
imageElement.width.baseVal.value = 200;
shouldBe("imageElement.width.baseVal.value", "200");
}
var successfullyParsed = true;