Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Unified Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGSVGElement-svgdom-requiredFeatures.js

Issue 43223002: SVGTests should not leave detached elements in the tree (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Always reattach Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/dynamic-updates/script-tests/SVGSVGElement-svgdom-requiredFeatures.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGSVGElement-svgdom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGSVGElement-svgdom-requiredFeatures.js
index ae39b669b0d9af8d0d75455f8c28df313ad33cfd..813a4a214a5ddc65b259332414c6d31a613f68e4 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGSVGElement-svgdom-requiredFeatures.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGSVGElement-svgdom-requiredFeatures.js
@@ -7,19 +7,19 @@ var svgElement = rootSVGElement;
function repaintTest() {
debug("Check that SVGSVGElement is initially displayed");
- shouldBeEqualToString("document.defaultView.getComputedStyle(svgElement, null).display", "inline");
+ shouldBe("svgElement.getBoundingClientRect().width", "300");
debug("Check that setting requiredFeatures to something invalid makes it not render");
svgElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
- shouldBeEqualToString("document.defaultView.getComputedStyle(svgElement, null).display", "");
+ shouldBe("svgElement.getBoundingClientRect().width", "0");
debug("Check that setting requiredFeatures to something valid makes it render again");
svgElement.requiredFeatures.replaceItem("http://www.w3.org/TR/SVG11/feature#Shape", 0);
- shouldBeEqualToString("document.defaultView.getComputedStyle(svgElement, null).display", "inline");
+ shouldBe("svgElement.getBoundingClientRect().width", "300");
debug("Check that adding something valid to requiredFeatures keeps rendering the element");
svgElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#Gradient");
- shouldBeEqualToString("document.defaultView.getComputedStyle(svgElement, null).display", "inline");
+ shouldBe("svgElement.getBoundingClientRect().width", "300");
debug("Check that adding something invalid to requiredFeatures makes it not render");
svgElement.requiredFeatures.appendItem("http://www.w3.org/TR/SVG11/feature#BogusFeature");
- shouldBeEqualToString("document.defaultView.getComputedStyle(svgElement, null).display", "");
+ shouldBe("svgElement.getBoundingClientRect().width", "0");
completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698