| 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 ["captureEvents", "function"], | 7 ["captureEvents", "function"], |
| 8 ["clearInterval", "function"], | 8 ["clearInterval", "function"], |
| 9 ["clearTimeout", "function"], | 9 ["clearTimeout", "function"], |
| 10 ["close", "function"], | 10 ["close", "function"], |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 ["SVGTransform", "object"], | 146 ["SVGTransform", "object"], |
| 147 ["SVGUnitTypes", "object"], | 147 ["SVGUnitTypes", "object"], |
| 148 ["StyleSheet", "object"], | 148 ["StyleSheet", "object"], |
| 149 ["StyleSheetList", "object"], | 149 ["StyleSheetList", "object"], |
| 150 ["Text", "object"], | 150 ["Text", "object"], |
| 151 ["TextEvent", "object"], | 151 ["TextEvent", "object"], |
| 152 ["UIEvent", "object"], | 152 ["UIEvent", "object"], |
| 153 ["WheelEvent", "object"], | 153 ["WheelEvent", "object"], |
| 154 ["XMLDocument", "object"], | 154 ["XMLDocument", "object"], |
| 155 ["XMLHttpRequest", "object"], | 155 ["XMLHttpRequest", "object"], |
| 156 ["XMLHttpRequestException", "object"], | |
| 157 ["XMLSerializer", "object"], | 156 ["XMLSerializer", "object"], |
| 158 ["XPathEvaluator", "object"], | 157 ["XPathEvaluator", "object"], |
| 159 ["XPathException", "object"], | 158 ["XPathException", "object"], |
| 160 ["XPathResult", "object"], | 159 ["XPathResult", "object"], |
| 161 ["XSLTProcessor", "object"], | 160 ["XSLTProcessor", "object"], |
| 162 ["onload", "object"], | 161 ["onload", "object"], |
| 163 ["frames", "object"], | 162 ["frames", "object"], |
| 164 ["parent", "object"], | 163 ["parent", "object"], |
| 165 ["self", "object"], | 164 ["self", "object"], |
| 166 ["top", "object"], | 165 ["top", "object"], |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 | 225 |
| 227 ["closed", "boolean"], | 226 ["closed", "boolean"], |
| 228 ["offscreenBuffering", "boolean"], | 227 ["offscreenBuffering", "boolean"], |
| 229 ]; | 228 ]; |
| 230 | 229 |
| 231 // Also collect a list of only the property names. | 230 // Also collect a list of only the property names. |
| 232 var properties = []; | 231 var properties = []; |
| 233 for (var i = 0; i < propertyInfo.length; ++i) { | 232 for (var i = 0; i < propertyInfo.length; ++i) { |
| 234 properties.push(propertyInfo[i][0]); | 233 properties.push(propertyInfo[i][0]); |
| 235 } | 234 } |
| OLD | NEW |