blob: 067c2a1346815f463ba0cb45125eab00e0f701f2 [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] SVGPathElement-svgdom-requiredFeatures.js
// [Expected rendering result] a series of PASS messages
createSVGTestCase();
var pathElement = createSVGElement("path");
pathElement.setAttribute("d", "M0 0 L 200 0 L 200 200 L 0 200");
rootSVGElement.appendChild(pathElement);
function repaintTest() {
debug("Check that SVGPathElement is initially displayed");
shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "inline");
debug("Check that setting requiredFeatures to something invalid makes it not render");
pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "");
debug("Check that setting requiredFeatures to something valid makes it render again");
pathElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature#Shape", 0);
shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "inline");
debug("Check that adding something valid to requiredFeatures keeps rendering the element");
pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#Gradient");
shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "inline");
debug("Check that adding something invalid to requiredFeatures makes it not render");
pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "");
completeTest();
}
var successfullyParsed = true;
</script>
</body>
</html>