diff options
Diffstat (limited to 'js/xpconnect/tests/chrome/file_bug1281071.html')
-rw-r--r-- | js/xpconnect/tests/chrome/file_bug1281071.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/js/xpconnect/tests/chrome/file_bug1281071.html b/js/xpconnect/tests/chrome/file_bug1281071.html new file mode 100644 index 0000000000..2398ce4a57 --- /dev/null +++ b/js/xpconnect/tests/chrome/file_bug1281071.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<script> + function tryLocationGet() { + var desc = Object.getOwnPropertyDescriptor(window, "location"); + try { + desc.get.call(parent); + return "get succeeded"; + } catch (e) { + return e.message; + } + } +</script> + |