blob: e3bf1275c2885cb0d631317d2a51776090c4ebcb [file] [log] [blame]
// [Name] SVGRectElement-dom-requiredFeatures.js
// [Expected rendering result] a series of PASS messages
createSVGTestCase();
var rectElement = createSVGElement("rect");
rectElement.setAttribute("width", "200");
rectElement.setAttribute("height", "200");
rootSVGElement.appendChild(rectElement);
function repaintTest() {
debug("Check that SVGRectElement is initially displayed");
shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "inline");
debug("Check that setting requiredFeatures to something invalid makes it not render");
rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "");
debug("Check that setting requiredFeatures to something valid makes it render again");
rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Shape");
shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "inline");
debug("Check that adding something valid to requiredFeatures keeps rendering the element");
rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Gradient");
shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "inline");
debug("Check that adding something invalid to requiredFeatures makes it not render");
rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "");
completeTest();
}
var successfullyParsed = true;