blob: 2aa056b69647bccfeb31b13eac57a9a300f90142 [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] SVGLineElement-svgdom-y1-prop.js
// [Expected rendering result] green line from 10x10 to 200x200 - and a series of PASS messages
description("Tests dynamic updates of the 'y1' property of the SVGLineElement object")
createSVGTestCase();
var lineElement = createSVGElement("line");
lineElement.setAttribute("x1", "10");
lineElement.setAttribute("y1", "100");
lineElement.setAttribute("x2", "200");
lineElement.setAttribute("y2", "200");
lineElement.setAttribute("stroke", "green");
lineElement.setAttribute("stroke-width", "10");
rootSVGElement.appendChild(lineElement);
shouldBe("lineElement.y1.baseVal.value", "100");
function repaintTest() {
lineElement.y1.baseVal.value = 10;
shouldBe("lineElement.y1.baseVal.value", "10");
completeTest();
}
var successfullyParsed = true;
</script>
</body>
</html>