blob: 9c33588c4386db6f43a3fc61be74bbbb3019107b (
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 myConstructor = {}.constructor;
// Try to call a function defined in the imported script.
function importedScriptFunction() {
}
|