| Index: LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-svgdom-requiredFeatures.js
|
| diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-svgdom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-svgdom-requiredFeatures.js
|
| index 750fc50ef13a50ee5f1b02f97f3736418d455d00..8eaf23fdb705305c9d1d9874306d7a18a9663086 100644
|
| --- a/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-svgdom-requiredFeatures.js
|
| +++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-svgdom-requiredFeatures.js
|
| @@ -12,7 +12,7 @@ function repaintTest() {
|
| debug("Check that SVGPathElement is initially displayed");
|
| shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "inline");
|
| debug("Check that setting requiredFeatures to something invalid makes it not render");
|
| - pathElement.requiredFeatures.appendItem("foo");
|
| + pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "");
|
| debug("Check that setting requiredFeatures to something valid makes it render again");
|
| pathElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature#Shape", 0);
|
| @@ -21,7 +21,7 @@ function repaintTest() {
|
| pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#Gradient");
|
| shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "inline");
|
| debug("Check that adding something invalid to requiredFeatures makes it not render");
|
| - pathElement.requiredFeatures.appendItem("foo");
|
| + pathElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "");
|
|
|
| completeTest();
|
|
|