blob: 3aafb60be39616196d2843f57e11c5774158f9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// This caused security exceptions in the past, make sure it doesn't!
var myConstructor2 = {}.constructor;
// Try to call a function defined in the imported script.
function importedScriptFunction2() {
}
|