blob: 219d1588e1b115e67e70007935f05248237d785d (
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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
/* Test JSOP_UNBRANDTHIS's behavior on object and non-object |this| values. */
function strict() {
"use strict";
this.insert = function(){ bar(); };
function bar() {}
}
var exception;
// Try 'undefined' as a |this| value.
exception = null;
try {
strict.call(undefined);
} catch (x) {
exception = x;
}
assertEq(exception instanceof TypeError, true);
// Try 'null' as a |this| value.
exception = null;
try {
strict.call(null);
} catch (x) {
exception = x;
}
assertEq(exception instanceof TypeError, true);
// An object as a |this| value should be fine.
exception = null;
try {
strict.call({});
} catch (x) {
exception = x;
}
assertEq(exception, null);
reportCompare(true, true);
|