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

Unified Diff: LayoutTests/svg/custom/required-feature-vs-has-feature.svg

Issue 693353002: Deprecate DOMImplementation.hasFeature() returning false (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: test Created 6 years, 1 month 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/svg/custom/required-feature-vs-has-feature-expected.svg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/custom/required-feature-vs-has-feature.svg
diff --git a/LayoutTests/svg/custom/required-feature-vs-has-feature.svg b/LayoutTests/svg/custom/required-feature-vs-has-feature.svg
new file mode 100644
index 0000000000000000000000000000000000000000..a69f527186105006474e1c5571c16372f4535b3f
--- /dev/null
+++ b/LayoutTests/svg/custom/required-feature-vs-has-feature.svg
@@ -0,0 +1,17 @@
+<svg xmlns="http://www.w3.org/2000/svg">
+ <title>The requiredFeatures attribute and the hasFeature() API should be in agreement</title>
+ <text x="20" y="20" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Filter">This text should be visible</text>
+ <text x="20" y="40" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Font">This text should not be visible</text>
+ <text x="20" y="60" class="Filter">This text should be visible</text>
+ <text x="20" y="80" class="Font">This text should not be visible</text>
+ <script><![CDATA[
+ var textElements = document.querySelectorAll("text[class]");
+ Array.prototype.forEach.call(textElements, function(text)
+ {
+ var feature = "http://www.w3.org/TR/SVG11/feature#" + text.getAttribute("class");
+ if (!document.implementation.hasFeature(feature, null)) {
+ text.parentNode.removeChild(text);
+ }
+ });
+ ]]></script>
+</svg>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/svg/custom/required-feature-vs-has-feature-expected.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698