| Index: LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-svgdom-requiredFeatures.js | 
| diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-svgdom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-svgdom-requiredFeatures.js | 
| index fdc8e4668b4d5b8cec1f680303339690f822d849..6b533e1d046f3355a733b7c7f27d2ab3b4140316 100644 | 
| --- a/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-svgdom-requiredFeatures.js | 
| +++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGRectElement-svgdom-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.requiredFeatures.appendItem("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.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature#Shape", 0); | 
| -    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.requiredFeatures.appendItem("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.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature"); | 
| -    shouldBeEqualToString("document.defaultView.getComputedStyle(rectElement, null).display", ""); | 
| +    shouldHaveBBox("rectElement", "0", "0"); | 
|  | 
| completeTest(); | 
| } | 
|  |