mirror of
https://github.com/servo/servo
synced 2026-05-11 17:37:21 +02:00
16 lines
287 B
HTML
16 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>
|