blob: 71be0df773de7b38438d8ec1e9f0c1744bc3ded8 [file] [log] [blame]
SVG 1.1 dynamic update tests
Check that SVGSVGElement is initially displayed
PASS document.defaultView.getComputedStyle(svgElement, null).display is "inline"
Check that setting requiredFeatures to something invalid makes it not render
PASS document.defaultView.getComputedStyle(svgElement, null).display is ""
Check that setting requiredFeatures to something valid makes it render again
PASS document.defaultView.getComputedStyle(svgElement, null).display is "inline"
Check that adding something valid to requiredFeatures keeps rendering the element
PASS document.defaultView.getComputedStyle(svgElement, null).display is "inline"
Check that adding something invalid to requiredFeatures makes it not render
PASS document.defaultView.getComputedStyle(svgElement, null).display is ""
PASS successfullyParsed is true
TEST COMPLETE