blob: 2a1d28c44d2a2d731000e21874a58ce89c62926c (
plain)
1
2
3
4
5
6
7
8
9
|
/**
* 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() {}
|