mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var links = document.links;
|
|
is(links, document.links);
|
|
is(links.length, 0);
|
|
|
|
var anchor = document.createElement("a");
|
|
anchor.id = "anchor-with-href";
|
|
anchor.setAttribute("href", "http://www.google.com");
|
|
document.body.appendChild(anchor);
|
|
is(links.length, 1);
|
|
|
|
anchor = document.createElement("a");
|
|
anchor.id = "anchor-without-href";
|
|
document.body.appendChild(anchor);
|
|
is(links.length, 1);
|
|
|
|
anchor.setAttribute("href", "http://www.google.com");
|
|
is(links.length, 2);
|
|
|
|
anchor.removeAttribute("href", "http://www.google.com");
|
|
is(links.length, 1);
|
|
|
|
document.body.removeChild(document.getElementById("anchor-without-href"));
|
|
is(links.length, 1);
|
|
|
|
document.body.removeChild(document.getElementById("anchor-with-href"));
|
|
is(links, document.links);
|
|
is(links.length, 0);
|
|
</script>
|
|
</body>
|
|
</html>
|