summaryrefslogtreecommitdiffstats
path: root/dom/bindings/test/file_InstanceOf.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/bindings/test/file_InstanceOf.html')
-rw-r--r--dom/bindings/test/file_InstanceOf.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/dom/bindings/test/file_InstanceOf.html b/dom/bindings/test/file_InstanceOf.html
new file mode 100644
index 0000000000..61e2bc295e
--- /dev/null
+++ b/dom/bindings/test/file_InstanceOf.html
@@ -0,0 +1,11 @@
+<!DOCTYPE HTML>
+<html>
+<body>
+<script type="application/javascript">
+function runTest() {
+ return [ parent.HTMLElement.prototype instanceof Element,
+ parent.HTMLElement.prototype instanceof parent.Element ];
+}
+</script>
+</body>
+</html>