Index: LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-dom-requiredFeatures.js |
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-dom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-dom-requiredFeatures.js |
deleted file mode 100644 |
index 1a9c5cdc84051ed781681c3b6ab138a82e1801df..0000000000000000000000000000000000000000 |
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-dom-requiredFeatures.js |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-// [Name] SVGPathElement-dom-requiredFeatures.js |
-// [Expected rendering result] a series of PASS messages |
- |
-createSVGTestCase(); |
- |
-var pathElement = createSVGElement("path"); |
-pathElement.setAttribute("d", "M0 0 L 200 0 L 200 200 L 0 200"); |
- |
-rootSVGElement.appendChild(pathElement); |
- |
-function repaintTest() { |
- debug("Check that SVGPathElement is initially displayed"); |
- shouldHaveBBox("pathElement", "200", "200"); |
- debug("Check that setting requiredFeatures to something invalid makes it not render"); |
- pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature"); |
- shouldHaveBBox("pathElement", "0", "0"); |
- debug("Check that setting requiredFeatures to something valid makes it render again"); |
- pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Shape"); |
- shouldHaveBBox("pathElement", "200", "200"); |
- debug("Check that adding something valid to requiredFeatures keeps rendering the element"); |
- pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Gradient"); |
- shouldHaveBBox("pathElement", "200", "200"); |
- debug("Check that adding something invalid to requiredFeatures makes it not render"); |
- pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature"); |
- shouldHaveBBox("pathElement", "0", "0"); |
-} |
- |
-var successfullyParsed = true; |