| Index: LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-dom-requiredFeatures.js
|
| diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-dom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-dom-requiredFeatures.js
|
| index e3bf1275c2885cb0d631317d2a51776090c4ebcb..7df427ba5f3d52e66bc7807f77838a1eb61cab3f 100644
|
| --- a/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-dom-requiredFeatures.js
|
| +++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-dom-requiredFeatures.js
|
| @@ -11,19 +11,19 @@ rootSVGElement.appendChild(rectElement);
|
|
|
| function repaintTest() {
|
| debug("Check that SVGRectElement is initially displayed");
|
| - shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "inline");
|
| + shouldHaveBBox("rectElement", "200", "200");
|
| debug("Check that setting requiredFeatures to something invalid makes it not render");
|
| rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| - shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "");
|
| + shouldHaveBBox("rectElement", "0", "0");
|
| debug("Check that setting requiredFeatures to something valid makes it render again");
|
| rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Shape");
|
| - shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "inline");
|
| + shouldHaveBBox("rectElement", "200", "200");
|
| debug("Check that adding something valid to requiredFeatures keeps rendering the element");
|
| rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Gradient");
|
| - shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "inline");
|
| + shouldHaveBBox("rectElement", "200", "200");
|
| debug("Check that adding something invalid to requiredFeatures makes it not render");
|
| rectElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
|
| - shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", "");
|
| + shouldHaveBBox("rectElement", "0", "0");
|
|
|
| completeTest();
|
| }
|
|
|