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