mirror of
https://github.com/servo/servo.git
synced 2025-06-14 11:24:33 +00:00
14 lines
273 B
HTML
14 lines
273 B
HTML
<html>
|
|
<head >
|
|
<title></title>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<div name="foo"></div>
|
|
<script>
|
|
let nameList = document.getElementsByName("foo");
|
|
is_a(nameList, NodeList);
|
|
is_not_a(nameList, HTMLCollection);
|
|
</script>
|
|
</body>
|
|
</html>
|