Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/links/links-created-by-a-and-area-elements/htmlanchorelement_getter.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<html>
<head>
<title>HTMLAnchorElement getters test</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function test_getter(property, result, id) {
var a = document.getElementById(id);
var r = a[property];
assert_equals(r, result);
}
//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() {
test_getter(tests[i][0], tests[i][1], tests[i][2])
}, "Getter for attribute of anchor element(" + i + "):" + tests[i][0]);
}
</script>
</head>
</html>