| OLD | NEW |
| 1 var windowFunctions = [ | 1 var windowFunctions = [ |
| 2 // Functions implemented on the Window object's prototype | 2 // Functions implemented on the Window object's prototype |
| 3 "getSelection", | 3 "getSelection", |
| 4 "focus", | 4 "focus", |
| 5 "blur", | 5 "blur", |
| 6 "close", | 6 "close", |
| 7 "print", | 7 "print", |
| 8 "stop", | 8 "stop", |
| 9 "alert", | 9 "alert", |
| 10 "confirm", | 10 "confirm", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // Functions currently implemented on the Window object itself. NOTE: these
should be moved to the prototype. | 25 // Functions currently implemented on the Window object itself. NOTE: these
should be moved to the prototype. |
| 26 "atob", | 26 "atob", |
| 27 "btoa", | 27 "btoa", |
| 28 "open", | 28 "open", |
| 29 "setTimeout", | 29 "setTimeout", |
| 30 "clearTimeout", | 30 "clearTimeout", |
| 31 "setInterval", | 31 "setInterval", |
| 32 "clearInterval", | 32 "clearInterval", |
| 33 "addEventListener", | 33 "addEventListener", |
| 34 "removeEventListener", | 34 "removeEventListener", |
| 35 "showModalDialog", | |
| 36 "captureEvents", | 35 "captureEvents", |
| 37 "releaseEvents", | 36 "releaseEvents", |
| 38 | 37 |
| 39 // Functions from the Global Object | 38 // Functions from the Global Object |
| 40 "eval", | 39 "eval", |
| 41 "parseInt", | 40 "parseInt", |
| 42 "parseFloat", | 41 "parseFloat", |
| 43 "isNaN", | 42 "isNaN", |
| 44 "isFinite", | 43 "isFinite", |
| 45 "escape", | 44 "escape", |
| 46 "unescape", | 45 "unescape", |
| 47 "decodeURI", | 46 "decodeURI", |
| 48 "decodeURIComponent", | 47 "decodeURIComponent", |
| 49 "encodeURI", | 48 "encodeURI", |
| 50 "encodeURIComponent", | 49 "encodeURIComponent", |
| 51 | 50 |
| 52 // Functions from Object.prototype | 51 // Functions from Object.prototype |
| 53 "toString", | 52 "toString", |
| 54 "toLocaleString", | 53 "toLocaleString", |
| 55 "valueOf", | 54 "valueOf", |
| 56 "hasOwnProperty", | 55 "hasOwnProperty", |
| 57 "propertyIsEnumerable", | 56 "propertyIsEnumerable", |
| 58 "isPrototypeOf", | 57 "isPrototypeOf", |
| 59 "__defineGetter__", | 58 "__defineGetter__", |
| 60 "__defineSetter__", | 59 "__defineSetter__", |
| 61 "__lookupGetter__", | 60 "__lookupGetter__", |
| 62 "__lookupSetter__" | 61 "__lookupSetter__" |
| 63 ]; | 62 ]; |
| OLD | NEW |