haikuwebkit/LayoutTests/svg/dynamic-updates/SVGForeignObjectElement-svg...

17 lines
888 B
Plaintext

SVG 1.1 dynamic update tests
Check that SVGForeignObjectElement is initially displayed
PASS document.defaultView.getComputedStyle(foreignObjectElement, null).display is "block"
Check that setting requiredFeatures to something invalid makes it not render
PASS document.defaultView.getComputedStyle(foreignObjectElement, null).display is ""
Check that setting requiredFeatures to something valid makes it render again
PASS document.defaultView.getComputedStyle(foreignObjectElement, null).display is "block"
Check that adding something valid to requiredFeatures keeps rendering the element
PASS document.defaultView.getComputedStyle(foreignObjectElement, null).display is "block"
Check that adding something invalid to requiredFeatures makes it not render
PASS document.defaultView.getComputedStyle(foreignObjectElement, null).display is ""
PASS successfullyParsed is true
TEST COMPLETE