Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /svg/struct/UnknownElement/interface.svg - WPT Dashboard Interop Dashboard
<?xml version="1.0" encoding="UTF-8"?>
version="1.1"
width="100%" height="100%" viewBox="0 0 400 400">
<title>Interface of unknown element</title>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<foobar id="target"/>
<h:script><![CDATA[
test(function() {
var e = document.getElementById("target");
assert_equals(Object.getPrototypeOf(e), SVGUnknownElement.prototype);
});
]]></h:script>
</svg>