blob: 59d6dbd8937d57b73f0bde09fb7a748f2bf19522 [file] [log] [blame]
// [Name] SVGCircleElement-dom-cx-attr.js
// [Expected rendering result] green circle - and a series of PASS mesages
description("Tests dynamic updates of the 'cx' attribute of the SVGCircleElement object")
createSVGTestCase();
var circleElement = createSVGElement("circle");
circleElement.setAttribute("cx", "-150");
circleElement.setAttribute("cy", "150");
circleElement.setAttribute("r", "150");
circleElement.setAttribute("fill", "green");
rootSVGElement.appendChild(circleElement);
shouldBeEqualToString("circleElement.getAttribute('cx')", "-150");
function executeTest() {
circleElement.setAttribute("cx", "150");
shouldBeEqualToString("circleElement.getAttribute('cx')", "150");
waitForClickEvent(circleElement);
triggerUpdate();
}
executeTest();
var successfullyParsed = true;