| 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 15 matching lines...) Expand all Loading... |
| 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", | 35 "showModalDialog", |
| 36 "captureEvents", |
| 37 "releaseEvents", |
| 36 | 38 |
| 37 // Functions from the Global Object | 39 // Functions from the Global Object |
| 38 "eval", | 40 "eval", |
| 39 "parseInt", | 41 "parseInt", |
| 40 "parseFloat", | 42 "parseFloat", |
| 41 "isNaN", | 43 "isNaN", |
| 42 "isFinite", | 44 "isFinite", |
| 43 "escape", | 45 "escape", |
| 44 "unescape", | 46 "unescape", |
| 45 "decodeURI", | 47 "decodeURI", |
| 46 "decodeURIComponent", | 48 "decodeURIComponent", |
| 47 "encodeURI", | 49 "encodeURI", |
| 48 "encodeURIComponent", | 50 "encodeURIComponent", |
| 49 | 51 |
| 50 // Functions from Object.prototype | 52 // Functions from Object.prototype |
| 51 "toString", | 53 "toString", |
| 52 "toLocaleString", | 54 "toLocaleString", |
| 53 "valueOf", | 55 "valueOf", |
| 54 "hasOwnProperty", | 56 "hasOwnProperty", |
| 55 "propertyIsEnumerable", | 57 "propertyIsEnumerable", |
| 56 "isPrototypeOf", | 58 "isPrototypeOf", |
| 57 "__defineGetter__", | 59 "__defineGetter__", |
| 58 "__defineSetter__", | 60 "__defineSetter__", |
| 59 "__lookupGetter__", | 61 "__lookupGetter__", |
| 60 "__lookupSetter__" | 62 "__lookupSetter__" |
| 61 ]; | 63 ]; |
| OLD | NEW |