Source-Repo: https://github.com/servo/servo Source-Revision: bb7621f5dc33dd5068a3a4de7cdfe3af8b3d4130
15 lines
273 B
HTML
15 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>
|