blob: 51b9e22f84292ea129b6f8945c127b434fa632f5 [file] [log] [blame]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>getElementsByName and ids</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"/>
<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>