3 <script src=
"../../resources/js-test.js"></script>
8 description("Tests the prototype chain of interface objects");
10 shouldBe('Object.getPrototypeOf(HTMLBodyElement)', 'HTMLElement');
11 shouldBe('Object.getPrototypeOf(HTMLElement)', 'Element');
12 shouldBe('Object.getPrototypeOf(Element)', 'Node');
13 shouldBe('Object.getPrototypeOf(Node)', 'EventTarget');
14 shouldBe('Object.getPrototypeOf(EventTarget)', 'Function.prototype');