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