blob: 6c177518434953b675e52c2445b487b8958768c3 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="resources/SVGTestCase.js"></script>
<script src="../../resources/js-test-pre.js"></script>
<script src="../../fast/repaint/resources/repaint.js"></script>
</head>
<body onload="runRepaintTest()">
<h1>SVG 1.1 dynamic update tests</h1>
<p id="description"></p>
<div id="console"></div>
<script>
// [Name] SVGEllipseElement-dom-ry-attr.js
// [Expected rendering result] with rx = ry (in fact a circle) - and a series of PASS messages
description("Tests dynamic updates of the 'ry' attribute of the SVGEllipseElement object")
createSVGTestCase();
var ellipseElement = createSVGElement("ellipse");
ellipseElement.setAttribute("cx", "150");
ellipseElement.setAttribute("cy", "150");
ellipseElement.setAttribute("rx", "150");
ellipseElement.setAttribute("ry", "10");
ellipseElement.setAttribute("fill", "green");
rootSVGElement.appendChild(ellipseElement);
shouldBeEqualToString("ellipseElement.getAttribute('ry')", "10");
function repaintTest() {
ellipseElement.setAttribute("ry", "150");
shouldBeEqualToString("ellipseElement.getAttribute('ry')", "150");
completeTest();
}
var successfullyParsed = true;
</script>
</body>
</html>