blob: f16444cd097142fb6d492c2975d7fdc5cb9210c2 [file] [log] [blame]
// [Name] SVGImageElement-dom-y-attr.js
// [Expected rendering result] image at 0x0 size 200x200 - and a series of PASS messages
description("Tests dynamic updates of the 'y' attribute 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", "-190");
imageElement.setAttribute("width", "200");
imageElement.setAttribute("height", "200");
rootSVGElement.appendChild(imageElement);
shouldBeEqualToString("imageElement.getAttribute('y')", "-190");
function executeTest() {
imageElement.setAttribute("y", "0");
shouldBeEqualToString("imageElement.getAttribute('y')", "0");
completeTest();
}
startTest(imageElement, 100, 5);
var successfullyParsed = true;