| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 ["MutationEvent", "object"], | 122 ["MutationEvent", "object"], |
| 123 ["NamedNodeMap", "object"], | 123 ["NamedNodeMap", "object"], |
| 124 ["Node", "object"], | 124 ["Node", "object"], |
| 125 ["NodeFilter", "object"], | 125 ["NodeFilter", "object"], |
| 126 ["NodeList", "object"], | 126 ["NodeList", "object"], |
| 127 ["Notation", "object"], | 127 ["Notation", "object"], |
| 128 ["OverflowEvent", "object"], | 128 ["OverflowEvent", "object"], |
| 129 ["ProcessingInstruction", "object"], | 129 ["ProcessingInstruction", "object"], |
| 130 ["ProgressEvent", "object"], | 130 ["ProgressEvent", "object"], |
| 131 ["Range", "object"], | 131 ["Range", "object"], |
| 132 ["RangeException", "object"], | |
| 133 ["Rect", "object"], | 132 ["Rect", "object"], |
| 134 ["SVGAngle", "object"], | 133 ["SVGAngle", "object"], |
| 135 ["SVGColor", "object"], | 134 ["SVGColor", "object"], |
| 136 ["SVGException", "object"], | 135 ["SVGException", "object"], |
| 137 ["SVGGradientElement", "object"], | 136 ["SVGGradientElement", "object"], |
| 138 ["SVGLength", "object"], | 137 ["SVGLength", "object"], |
| 139 ["SVGMarkerElement", "object"], | 138 ["SVGMarkerElement", "object"], |
| 140 ["SVGPaint", "object"], | 139 ["SVGPaint", "object"], |
| 141 ["SVGPathSeg", "object"], | 140 ["SVGPathSeg", "object"], |
| 142 ["SVGPreserveAspectRatio", "object"], | 141 ["SVGPreserveAspectRatio", "object"], |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 224 |
| 226 ["closed", "boolean"], | 225 ["closed", "boolean"], |
| 227 ["offscreenBuffering", "boolean"], | 226 ["offscreenBuffering", "boolean"], |
| 228 ]; | 227 ]; |
| 229 | 228 |
| 230 // Also collect a list of only the property names. | 229 // Also collect a list of only the property names. |
| 231 var properties = []; | 230 var properties = []; |
| 232 for (var i = 0; i < propertyInfo.length; ++i) { | 231 for (var i = 0; i < propertyInfo.length; ++i) { |
| 233 properties.push(propertyInfo[i][0]); | 232 properties.push(propertyInfo[i][0]); |
| 234 } | 233 } |
| OLD | NEW |