diff options
Diffstat (limited to 'dom/bindings/test/file_InstanceOf.html')
-rw-r--r-- | dom/bindings/test/file_InstanceOf.html | 12 |
1 files changed, 12 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..487010fa42 --- /dev/null +++ b/dom/bindings/test/file_InstanceOf.html @@ -0,0 +1,12 @@ +<!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> |