| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/prototype-chain.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/prototype-chain.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/prototype-chain.html
|
| index 1506f1ae1d5089df3016fcc97c541f4cb22f2c26..6a885009848c0ef6dd5615c00847169e74585610 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/prototype-chain.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLIsIndexElement/prototype-chain.html
|
| @@ -4,6 +4,22 @@
|
| <script src="../../../resources/js-test.js"></script>
|
| </head>
|
| <body>
|
| -<script src="script-tests/prototype-chain.js"></script>
|
| +<script>
|
| +description("HTMLIsIndexElement should inherit directly from HTMLElement and be an HTMLUnknownElement");
|
| +
|
| +var isIndex = document.createElement("isindex");
|
| +
|
| +shouldBe("isIndex.__proto__", "HTMLUnknownElement.prototype");
|
| +shouldBe("isIndex.__proto__.__proto__", "HTMLElement.prototype");
|
| +
|
| +shouldBeUndefined("isIndex.prompt");
|
| +shouldBeUndefined("isIndex.form");
|
| +
|
| +shouldBeUndefined("isIndex.defaultValue");
|
| +shouldBeUndefined("isIndex.disabled");
|
| +shouldBeUndefined("isIndex.multiple");
|
| +shouldBeUndefined("isIndex.alt");
|
| +shouldBeUndefined("isIndex.accept");
|
| +</script>
|
| </body>
|
| </html>
|
|
|