4 <script src=
"../../resources/js-test.js"></script>
8 description('Test [Unscopeable] attributes and methods.');
10 shouldBeTrue('"unscopeableAttribute" in internals');
11 shouldBeTrue('"unscopeableMethod" in internals');
13 shouldBe('internals.unscopeableAttribute', '"unscopeableAttribute"');
14 shouldBe('internals.unscopeableMethod()', '"unscopeableMethod"');
16 var unscopeableAttribute
= 'variable';
17 var unscopeableMethod
= 'variable';
20 shouldBe('unscopeableAttribute', '"variable"');
21 shouldBe('unscopeableMethod', '"variable"');