13 lines
257 B
HTML
13 lines
257 B
HTML
<!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>
|
|
|