summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug541530.html
blob: 8db81808501bc1550eae19f118e49ffc05e69005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=541530
-->
<head>
  <title>Test for Bug 411103</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=541530">Mozilla Bug 541530</a>
<p id="display"></p>
<div id="content" style="display: none"></div>

<pre id="test">
<script class="testbody" type="text/javascript">

var orig = window;
window = {};

var origLocation = location;

ok(window === orig, "can't override window");
ok(window.location === location, "properties are properly aliased");
ok(document.location === location, "properties are properly aliased");

var canDefine = false;
try {
    this.__defineGetter__.call(this, 'bar', function() {});
    this.__defineSetter__.call(this, 'bar', function() {});
    canDefine = true;
} catch (e) {}
ok(canDefine, "Should have access to __defineGetter__ and __defineSetter__");

try {
    this.__defineGetter__('window', function() {});
    ok(false, "should not be able to defineGetter(window)");
} catch (e) {
}

try {
    this.__defineGetter__.call(window, 'location', function(){});
    ok(false, "should not be able to defineGetter(window.location)");
} catch (e) {
}

try {
    this.__defineGetter__.call(window.location, 'href', function(){});
    ok(false, "shouldn't be able to override location.href");
} catch (e) {
    ok(/shadow/.exec(e.message) ||
       /can't redefine non-configurable/.exec(e.message),
       "Should be caught by the anti-shadow mechanism.");
}

// Try deleting the property.
delete window.location.href;
ok(typeof window.location.href !== 'undefined',
   "shouldn't be able to delete the inherited property");
delete Object.getPrototypeOf(window.location).href;
ok(typeof window.location.href !== 'undefined',
   "shouldn't be able to delete the property off of the prototype");

this.__defineGetter__.call(Object.getPrototypeOf(window.location), 'href', function(){});
ok(true, "should be able to define things on the prototype");

try {
    this.__defineSetter__.call(window.location, 'href', function(){});
    ok(false, "overrode a setter for location.href?");
} catch (e) {
    ok(/shadow/.exec(e.message) ||
       /can't redefine non-configurable/.exec(e.message),
       "Should be caught by the anti-shadow mechanism.");
}

try {
    this.__defineGetter__.call(document, 'location', function(){});
    ok(false, "shouldn't be able to override document.location");
} catch (e) {
}

ok(window === orig, "can't override window");
ok(window.location === origLocation, "properties are properly aliased");
ok(document.location === origLocation, "properties are properly aliased");

location.href = 'javascript:ok(true, "was able to set location.href through a watchpoint")';

</script>
</pre>
</body>
</html>