| 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 ["HTMLTitleElement", "object"], | 114 ["HTMLTitleElement", "object"], |
| 115 ["HTMLUListElement", "object"], | 115 ["HTMLUListElement", "object"], |
| 116 ["KeyboardEvent", "object"], | 116 ["KeyboardEvent", "object"], |
| 117 ["MediaList", "object"], | 117 ["MediaList", "object"], |
| 118 ["MouseEvent", "object"], | 118 ["MouseEvent", "object"], |
| 119 ["MutationEvent", "object"], | 119 ["MutationEvent", "object"], |
| 120 ["NamedNodeMap", "object"], | 120 ["NamedNodeMap", "object"], |
| 121 ["Node", "object"], | 121 ["Node", "object"], |
| 122 ["NodeFilter", "object"], | 122 ["NodeFilter", "object"], |
| 123 ["NodeList", "object"], | 123 ["NodeList", "object"], |
| 124 ["Notation", "object"], | |
| 125 ["OverflowEvent", "object"], | 124 ["OverflowEvent", "object"], |
| 126 ["ProcessingInstruction", "object"], | 125 ["ProcessingInstruction", "object"], |
| 127 ["ProgressEvent", "object"], | 126 ["ProgressEvent", "object"], |
| 128 ["Range", "object"], | 127 ["Range", "object"], |
| 129 ["Rect", "object"], | 128 ["Rect", "object"], |
| 130 ["SVGAngle", "object"], | 129 ["SVGAngle", "object"], |
| 131 ["SVGGradientElement", "object"], | 130 ["SVGGradientElement", "object"], |
| 132 ["SVGLength", "object"], | 131 ["SVGLength", "object"], |
| 133 ["SVGMarkerElement", "object"], | 132 ["SVGMarkerElement", "object"], |
| 134 ["SVGPathSeg", "object"], | 133 ["SVGPathSeg", "object"], |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 | 216 |
| 218 ["closed", "boolean"], | 217 ["closed", "boolean"], |
| 219 ["offscreenBuffering", "boolean"], | 218 ["offscreenBuffering", "boolean"], |
| 220 ]; | 219 ]; |
| 221 | 220 |
| 222 // Also collect a list of only the property names. | 221 // Also collect a list of only the property names. |
| 223 var properties = []; | 222 var properties = []; |
| 224 for (var i = 0; i < propertyInfo.length; ++i) { | 223 for (var i = 0; i < propertyInfo.length; ++i) { |
| 225 properties.push(propertyInfo[i][0]); | 224 properties.push(propertyInfo[i][0]); |
| 226 } | 225 } |
| OLD | NEW |