| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ["HTMLTitleElement", "object"], | 109 ["HTMLTitleElement", "object"], |
| 110 ["HTMLUListElement", "object"], | 110 ["HTMLUListElement", "object"], |
| 111 ["KeyboardEvent", "object"], | 111 ["KeyboardEvent", "object"], |
| 112 ["MediaList", "object"], | 112 ["MediaList", "object"], |
| 113 ["MouseEvent", "object"], | 113 ["MouseEvent", "object"], |
| 114 ["MutationEvent", "object"], | 114 ["MutationEvent", "object"], |
| 115 ["NamedNodeMap", "object"], | 115 ["NamedNodeMap", "object"], |
| 116 ["Node", "object"], | 116 ["Node", "object"], |
| 117 ["NodeFilter", "object"], | 117 ["NodeFilter", "object"], |
| 118 ["NodeList", "object"], | 118 ["NodeList", "object"], |
| 119 ["OverflowEvent", "object"], | |
| 120 ["ProcessingInstruction", "object"], | 119 ["ProcessingInstruction", "object"], |
| 121 ["ProgressEvent", "object"], | 120 ["ProgressEvent", "object"], |
| 122 ["Range", "object"], | 121 ["Range", "object"], |
| 123 ["SVGAngle", "object"], | 122 ["SVGAngle", "object"], |
| 124 ["SVGGradientElement", "object"], | 123 ["SVGGradientElement", "object"], |
| 125 ["SVGLength", "object"], | 124 ["SVGLength", "object"], |
| 126 ["SVGMarkerElement", "object"], | 125 ["SVGMarkerElement", "object"], |
| 127 ["SVGPathSeg", "object"], | 126 ["SVGPathSeg", "object"], |
| 128 ["SVGPreserveAspectRatio", "object"], | 127 ["SVGPreserveAspectRatio", "object"], |
| 129 ["SVGRenderingIntent", "object"], | 128 ["SVGRenderingIntent", "object"], |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 209 |
| 211 ["closed", "boolean"], | 210 ["closed", "boolean"], |
| 212 ["offscreenBuffering", "boolean"], | 211 ["offscreenBuffering", "boolean"], |
| 213 ]; | 212 ]; |
| 214 | 213 |
| 215 // Also collect a list of only the property names. | 214 // Also collect a list of only the property names. |
| 216 var properties = []; | 215 var properties = []; |
| 217 for (var i = 0; i < propertyInfo.length; ++i) { | 216 for (var i = 0; i < propertyInfo.length; ++i) { |
| 218 properties.push(propertyInfo[i][0]); | 217 properties.push(propertyInfo[i][0]); |
| 219 } | 218 } |
| OLD | NEW |