blob: 98daa89e71975231271ab50c3c224629aec845db [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var e = WScript.LoadScriptFile("cross_site_accessor_child.js", "samethread");
var child_obj = e.obj;
child_obj.x = function foo1() {
return "pass";
}
child_obj.y = function foo2(data) {
WScript.Echo(data);
}
WScript.Echo(child_obj.xval);
child_obj.xval = "pass"