1 2 3 4 5 6 7 8 9 10 11 12 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>