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

Unified Diff: LayoutTests/svg/dynamic-updates/script-tests/SVGPolylineElement-dom-requiredFeatures.js

Issue 20738002: Make DOMImplementation::hasFeature() behave according to specification (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Without the binaries so that the try bots are happy Created 7 years, 5 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/SVGPolylineElement-dom-requiredFeatures.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGPolylineElement-dom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGPolylineElement-dom-requiredFeatures.js
index d50070d61c1238fab6c06648083d91e325d0e7a3..416b4e0f289ee076ffc7c95a71459179f4e92070 100644
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGPolylineElement-dom-requiredFeatures.js
+++ b/LayoutTests/svg/dynamic-updates/script-tests/SVGPolylineElement-dom-requiredFeatures.js
@@ -12,7 +12,7 @@ function repaintTest() {
debug("Check that SVGPolylineElement is initially displayed");
shouldBeEqualToString("document.defaultView.getComputedStyle(polylineElement, null).display", "inline");
debug("Check that setting requiredFeatures to something invalid makes it not render");
- polylineElement.setAttribute("requiredFeatures", "foo");
+ polylineElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
shouldBeEqualToString("document.defaultView.getComputedStyle(polylineElement, null).display", "");
debug("Check that setting requiredFeatures to something valid makes it render again");
polylineElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Shape");
@@ -21,7 +21,7 @@ function repaintTest() {
polylineElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Gradient");
shouldBeEqualToString("document.defaultView.getComputedStyle(polylineElement, null).display", "inline");
debug("Check that adding something invalid to requiredFeatures makes it not render");
- polylineElement.setAttribute("requiredFeatures", "foo");
+ polylineElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
shouldBeEqualToString("document.defaultView.getComputedStyle(polylineElement, null).display", "");
completeTest();

Powered by Google App Engine
This is Rietveld 408576698