Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 10 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /mathml/relations/html5-tree/anchor-hyperlinkutils-getter.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>MathMLAnchorElement getters test</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<math>
</math>
<script>
// Elements for each test: [property, result, id]
// [0] [1] [2]
tests = [
["search", "?hi", "a1"],
["hash", "#somehash", "a2"],
["host", "google.com:1234", "a3"],
["hostname", "google.com", "a4"],
["password", "flabada", "a6"],
["pathname", "/somedir/someotherdir/index.html", "a7"],
["port", "1234", "a8"],
["protocol", "http:", "a9"],
["username", "anonymous", "a10"]
];
for (var i = 0; i < tests.length; i++) {
test(function () {
const [property, result, id] = tests[i];
var a = document.getElementById(id);
var r = a[property];
assert_equals(r, result);
}, `Getter for attribute of anchor element(${i}): ${tests[i][0]}`);
}
</script>