blob: 8902185a9dc9338585e73b131ad3e730fa0596f9 [file] [log] [blame]
// [Name] SVGCircleElement-svgdom-cy-prop.js
// [Expected rendering result] unclipped green circle - and a series of PASS messages
description("Tests dynamic updates of the 'cy' property of the SVGCircleElement object")
createSVGTestCase();
var circleElement = createSVGElement("circle");
circleElement.setAttribute("cx", "150");
circleElement.setAttribute("cy", "-50");
circleElement.setAttribute("r", "150");
circleElement.setAttribute("fill", "green");
rootSVGElement.appendChild(circleElement);
shouldBe("circleElement.cy.baseVal.value", "-50");
function repaintTest() {
circleElement.cy.baseVal.value = 150;
shouldBe("circleElement.cy.baseVal.value", "150");
}
var successfullyParsed = true;