blob: d2aed13a295da115a7ca2692ab0c12654bfb0e1c (
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
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-function-calls-runtime-semantics-evaluation
es6id: 12.3.4.1
description: >
An eval function from another realm is not a candidate for direct eval
info: |
[...]
3. If Type(ref) is Reference and IsPropertyReference(ref) is false and GetReferencedName(ref) is "eval", then
a. If SameValue(func, %eval%) is true, then
[...]
flags: [noStrict]
features: [cross-realm]
---*/
var x = 'outside';
var result;
(function() {
var eval = $262.createRealm().global.eval;
eval('var x = "inside";');
result = x;
}());
assert.sameValue(result, 'outside');
reportCompare(0, 0);
|