| 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
|
| index 05088c2fc278d7098a718bd36284a8c6670b7a8d..b178699832673b86d3c9dca2c87a2bd876bb19ad 100644
|
| --- a/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-dom-requiredFeatures.js
|
| +++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGPathElement-dom-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.setAttribute("requiredFeatures", "foo");
|
| + pathElement.setAttribute("requiredFeatures", "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.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Shape");
|
| @@ -21,7 +21,7 @@ function repaintTest() {
|
| pathElement.setAttribute("requiredFeatures", "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.setAttribute("requiredFeatures", "foo");
|
| + pathElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| shouldBeEqualToString("document.defaultView.getComputedStyle(pathElement, null).display", "");
|
|
|
| completeTest();
|
|
|