| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 ["Node", "object"], | 114 ["Node", "object"], |
| 115 ["NodeFilter", "object"], | 115 ["NodeFilter", "object"], |
| 116 ["NodeList", "object"], | 116 ["NodeList", "object"], |
| 117 ["ProcessingInstruction", "object"], | 117 ["ProcessingInstruction", "object"], |
| 118 ["ProgressEvent", "object"], | 118 ["ProgressEvent", "object"], |
| 119 ["Range", "object"], | 119 ["Range", "object"], |
| 120 ["SVGAngle", "object"], | 120 ["SVGAngle", "object"], |
| 121 ["SVGGradientElement", "object"], | 121 ["SVGGradientElement", "object"], |
| 122 ["SVGLength", "object"], | 122 ["SVGLength", "object"], |
| 123 ["SVGMarkerElement", "object"], | 123 ["SVGMarkerElement", "object"], |
| 124 ["SVGPathSeg", "object"], | |
| 125 ["SVGPreserveAspectRatio", "object"], | 124 ["SVGPreserveAspectRatio", "object"], |
| 126 ["SVGTextContentElement", "object"], | 125 ["SVGTextContentElement", "object"], |
| 127 ["SVGTextPathElement", "object"], | 126 ["SVGTextPathElement", "object"], |
| 128 ["SVGTransform", "object"], | 127 ["SVGTransform", "object"], |
| 129 ["SVGUnitTypes", "object"], | 128 ["SVGUnitTypes", "object"], |
| 130 ["StyleSheet", "object"], | 129 ["StyleSheet", "object"], |
| 131 ["StyleSheetList", "object"], | 130 ["StyleSheetList", "object"], |
| 132 ["Text", "object"], | 131 ["Text", "object"], |
| 133 ["TextEvent", "object"], | 132 ["TextEvent", "object"], |
| 134 ["UIEvent", "object"], | 133 ["UIEvent", "object"], |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 205 |
| 207 ["closed", "boolean"], | 206 ["closed", "boolean"], |
| 208 ["offscreenBuffering", "boolean"], | 207 ["offscreenBuffering", "boolean"], |
| 209 ]; | 208 ]; |
| 210 | 209 |
| 211 // Also collect a list of only the property names. | 210 // Also collect a list of only the property names. |
| 212 var properties = []; | 211 var properties = []; |
| 213 for (var i = 0; i < propertyInfo.length; ++i) { | 212 for (var i = 0; i < propertyInfo.length; ++i) { |
| 214 properties.push(propertyInfo[i][0]); | 213 properties.push(propertyInfo[i][0]); |
| 215 } | 214 } |
| OLD | NEW |