Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/dom/documents/dom-tree-accessors/document.getElementsByName/document.getElementsByName-interface.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Document.getElementsByName: interfaces</title>
<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
test(function() {
var collection = document.getElementsByName("name");
assert_class_string(collection, "NodeList");
assert_true(collection instanceof NodeList, "Should be a NodeList");
assert_false(collection instanceof HTMLCollection,
"Should not be a HTMLCollection");
});
</script>