mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
15 lines
287 B
HTML
15 lines
287 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);
|
|
finish();
|
|
</script>
|
|
</body>
|
|
</html>
|