chromium/third_party/blink/web_tests/external/wpt/html/dom/documents/dom-tree-accessors/document.getElementsByName/document.getElementsByName-id-xhtml.xhtml

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>getElementsByName and ids</title>
<link rel="author" title="Ms2ger" href="mailto:[email protected]"/>
<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-getelementsbyname"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id="log"></div>
<div id="test">
<div id="abcd"></div>
</div>
<script>
test(function() {
  assert_equals(document.getElementsByName("abcd").length, 0);
});
</script>
</body>
</html>