mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
16 lines
440 B
8 years ago
|
'use strict';
|
||
|
// Regression test for https://github.com/nodejs/node/issues/10806
|
||
|
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
const vm = require('vm');
|
||
|
const ctx = vm.createContext({ open() { } });
|
||
|
const window = vm.runInContext('this', ctx);
|
||
|
const other = 123;
|
||
|
|
||
|
assert.notStrictEqual(window.open, other);
|
||
|
window.open = other;
|
||
|
assert.strictEqual(window.open, other);
|
||
|
window.open = other;
|
||
|
assert.strictEqual(window.open, other);
|