| Index: LayoutTests/svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-requiredFeatures.js
|
| diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-requiredFeatures.js
|
| deleted file mode 100644
|
| index 7075a3429e08a68dd51fcac5150531d618f8919c..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/svg/dynamic-updates/script-tests/SVGForeignObjectElement-svgdom-requiredFeatures.js
|
| +++ /dev/null
|
| @@ -1,34 +0,0 @@
|
| -// [Name] SVGForeignObjectElement-svgdom-requiredFeatures.js
|
| -// [Expected rendering result] a series of PASS messages
|
| -
|
| -createSVGTestCase();
|
| -
|
| -var foreignObjectElement = createSVGElement("foreignObject");
|
| -foreignObjectElement.setAttribute("width", "200");
|
| -foreignObjectElement.setAttribute("height", "200");
|
| -
|
| -var htmlDivElement = document.createElementNS(xhtmlNS, "xhtml:div");
|
| -htmlDivElement.setAttribute("style", "background-color: green; color: white; text-align: center");
|
| -htmlDivElement.textContent = "Test passed";
|
| -
|
| -foreignObjectElement.appendChild(htmlDivElement);
|
| -rootSVGElement.appendChild(foreignObjectElement);
|
| -
|
| -function repaintTest() {
|
| - debug("Check that SVGForeignObjectElement is initially displayed");
|
| - shouldHaveBBox("foreignObjectElement", "200", "200");
|
| - debug("Check that setting requiredFeatures to something invalid makes it not render");
|
| - foreignObjectElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| - shouldHaveBBox("foreignObjectElement", "0", "0");
|
| - debug("Check that setting requiredFeatures to something valid makes it render again");
|
| - foreignObjectElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature#Shape", 0);
|
| - shouldHaveBBox("foreignObjectElement", "200", "200");
|
| - debug("Check that adding something valid to requiredFeatures keeps rendering the element");
|
| - foreignObjectElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#Gradient");
|
| - shouldHaveBBox("foreignObjectElement", "200", "200");
|
| - debug("Check that adding something invalid to requiredFeatures makes it not render");
|
| - foreignObjectElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| - shouldHaveBBox("foreignObjectElement", "0", "0");
|
| -}
|
| -
|
| -var successfullyParsed = true;
|
|
|