blob: a2db1376e9c7068b139daef6273f2f5d42db62a0 [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-cx-attr.js
// [Expected rendering result] unclipped green ellipse - and a series of PASS messages
description("Tests dynamic updates of the 'cx' attribute of the SVGEllipseElement object")
createSVGTestCase();
var ellipseElement = createSVGElement("ellipse");
ellipseElement.setAttribute("cx", "-50");
ellipseElement.setAttribute("cy", "150");
ellipseElement.setAttribute("rx", "100");
ellipseElement.setAttribute("ry", "150");
ellipseElement.setAttribute("fill", "green");
rootSVGElement.appendChild(ellipseElement);
shouldBeEqualToString("ellipseElement.getAttribute('cx')", "-50");
function repaintTest() {
ellipseElement.setAttribute("cx", "150");
shouldBeEqualToString("ellipseElement.getAttribute('cx')", "150");
completeTest();
}
var successfullyParsed = true;
</script>
</body>
</html>