summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/linking/scripted/a.rel-setter-01.svg
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/svg/linking/scripted/a.rel-setter-01.svg')
-rw-r--r--testing/web-platform/tests/svg/linking/scripted/a.rel-setter-01.svg21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/linking/scripted/a.rel-setter-01.svg b/testing/web-platform/tests/svg/linking/scripted/a.rel-setter-01.svg
new file mode 100644
index 0000000000..55470a81b5
--- /dev/null
+++ b/testing/web-platform/tests/svg/linking/scripted/a.rel-setter-01.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg"
+ xmlns:h="http://www.w3.org/1999/xhtml">
+ <title>SVGAElement.rel setter</title>
+ <metadata>
+ <h:link rel="help" href="https://svgwg.org/svg2-draft/linking.html#InterfaceSVGAElement"/>
+ </metadata>
+ <a id="test" href="a"></a>
+ <h:script src="/resources/testharness.js"/>
+ <h:script src="/resources/testharnessreport.js"/>
+ <script><![CDATA[
+ test(function() {
+ var a = document.getElementById("test");
+
+ test(function() {
+ a.rel = "noreferrer"
+ assert_equals(a.rel, "noreferrer");
+ }, "Test anchor's rel setter");
+ });
+ ]]></script>
+</svg> \ No newline at end of file