| OLD | NEW |
| 1 // The property name and type. | 1 // The property name and type. |
| 2 var propertyInfo = [ | 2 var propertyInfo = [ |
| 3 ["alert", "function"], | 3 ["alert", "function"], |
| 4 ["atob", "function"], | 4 ["atob", "function"], |
| 5 ["blur", "function"], | 5 ["blur", "function"], |
| 6 ["btoa", "function"], | 6 ["btoa", "function"], |
| 7 ["clearInterval", "function"], | 7 ["clearInterval", "function"], |
| 8 ["clearTimeout", "function"], | 8 ["clearTimeout", "function"], |
| 9 ["close", "function"], | 9 ["close", "function"], |
| 10 ["confirm", "function"], | 10 ["confirm", "function"], |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 ["StyleSheet", "object"], | 143 ["StyleSheet", "object"], |
| 144 ["StyleSheetList", "object"], | 144 ["StyleSheetList", "object"], |
| 145 ["Text", "object"], | 145 ["Text", "object"], |
| 146 ["TextEvent", "object"], | 146 ["TextEvent", "object"], |
| 147 ["UIEvent", "object"], | 147 ["UIEvent", "object"], |
| 148 ["WheelEvent", "object"], | 148 ["WheelEvent", "object"], |
| 149 ["XMLDocument", "object"], | 149 ["XMLDocument", "object"], |
| 150 ["XMLHttpRequest", "object"], | 150 ["XMLHttpRequest", "object"], |
| 151 ["XMLSerializer", "object"], | 151 ["XMLSerializer", "object"], |
| 152 ["XPathEvaluator", "object"], | 152 ["XPathEvaluator", "object"], |
| 153 ["XPathException", "object"], | |
| 154 ["XPathResult", "object"], | 153 ["XPathResult", "object"], |
| 155 ["XSLTProcessor", "object"], | 154 ["XSLTProcessor", "object"], |
| 156 ["onload", "object"], | 155 ["onload", "object"], |
| 157 ["frames", "object"], | 156 ["frames", "object"], |
| 158 ["parent", "object"], | 157 ["parent", "object"], |
| 159 ["self", "object"], | 158 ["self", "object"], |
| 160 ["top", "object"], | 159 ["top", "object"], |
| 161 ["window", "object"], | 160 ["window", "object"], |
| 162 ["locationbar", "object"], | 161 ["locationbar", "object"], |
| 163 ["menubar", "object"], | 162 ["menubar", "object"], |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 | 219 |
| 221 ["closed", "boolean"], | 220 ["closed", "boolean"], |
| 222 ["offscreenBuffering", "boolean"], | 221 ["offscreenBuffering", "boolean"], |
| 223 ]; | 222 ]; |
| 224 | 223 |
| 225 // Also collect a list of only the property names. | 224 // Also collect a list of only the property names. |
| 226 var properties = []; | 225 var properties = []; |
| 227 for (var i = 0; i < propertyInfo.length; ++i) { | 226 for (var i = 0; i < propertyInfo.length; ++i) { |
| 228 properties.push(propertyInfo[i][0]); | 227 properties.push(propertyInfo[i][0]); |
| 229 } | 228 } |
| OLD | NEW |