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

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

Issue 1108293002: Make DOMImplementation.hasFeature() always return true. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: windows compilefix attempt Created 5 years, 8 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/SVGUseElement-dom-requiredFeatures.js
diff --git a/LayoutTests/svg/dynamic-updates/script-tests/SVGUseElement-dom-requiredFeatures.js b/LayoutTests/svg/dynamic-updates/script-tests/SVGUseElement-dom-requiredFeatures.js
deleted file mode 100644
index 9f9c1c9befed4b77c3d6ba1f76ad86ffe44edba4..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/dynamic-updates/script-tests/SVGUseElement-dom-requiredFeatures.js
+++ /dev/null
@@ -1,35 +0,0 @@
-// [Name] SVGUseElement-dom-requiredFeatures.js
-// [Expected rendering result] a series of PASS messages
-
-createSVGTestCase();
-
-var useElement = createSVGElement("use");
-var defsElement = createSVGElement("defs");
-var rectElement = createSVGElement("rect");
-rectElement.setAttribute("width", "200");
-rectElement.setAttribute("height", "200");
-rectElement.setAttribute("id", "MyRect");
-useElement.setAttributeNS(xlinkNS, "xlink:href", "#MyRect");
-
-defsElement.appendChild(rectElement);
-rootSVGElement.appendChild(defsElement);
-rootSVGElement.appendChild(useElement);
-
-function repaintTest() {
- debug("Check that SVGUseElement is initially displayed");
- shouldHaveBBox("useElement", "200", "200");
- debug("Check that setting requiredFeatures to something invalid makes it not render");
- useElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
- shouldHaveBBox("useElement", "0", "0");
- debug("Check that setting requiredFeatures to something valid makes it render again");
- useElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Shape");
- shouldHaveBBox("useElement", "200", "200");
- debug("Check that adding something valid to requiredFeatures keeps rendering the element");
- useElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#Gradient");
- shouldHaveBBox("useElement", "200", "200");
- debug("Check that adding something invalid to requiredFeatures makes it not render");
- useElement.setAttribute("requiredFeatures", "http://www.w3.org/TR/SVG11/feature#BogusFeature");
- shouldHaveBBox("useElement", "0", "0");
-}
-
-var successfullyParsed = true;

Powered by Google App Engine
This is Rietveld 408576698