summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/documents/dom-tree-accessors/nameditem-08.html
blob: bb024d9e781fc99d4f60d5d50d6a83970c661f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<meta charset=utf-8>
<title>Named items: duplicate id attributes for object and img</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/dom.html#dom-document-nameditem">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<div id="test">
<div id=test2></div>
<object id=test2></object>

<div id=test3></div>
<img id=test3 name=non-empty>
</div>
<script>
test(function() {
  var object = document.querySelector("object");
  assert_equals(object.id, "test2");

  assert_true("test2" in document);
  assert_equals(document.test2, object);
}, "If there is a div and object with same id, the object should be returned");

test(function() {
  var img = document.querySelector("img");
  assert_equals(img.id, "test3");

  assert_true("test3" in document);
  assert_equals(document.test3, img);
}, "If there is a div and img with same id, the img should be returned");
</script>