| 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 20 matching lines...) Expand all Loading... |
| 31 ["stop", "function"], | 31 ["stop", "function"], |
| 32 ["toString", "function"], | 32 ["toString", "function"], |
| 33 | 33 |
| 34 ["Attr", "object"], | 34 ["Attr", "object"], |
| 35 ["CDATASection", "object"], | 35 ["CDATASection", "object"], |
| 36 ["CSSCharsetRule", "object"], | 36 ["CSSCharsetRule", "object"], |
| 37 ["CSSFontFaceRule", "object"], | 37 ["CSSFontFaceRule", "object"], |
| 38 ["CSSImportRule", "object"], | 38 ["CSSImportRule", "object"], |
| 39 ["CSSMediaRule", "object"], | 39 ["CSSMediaRule", "object"], |
| 40 ["CSSPageRule", "object"], | 40 ["CSSPageRule", "object"], |
| 41 ["CSSPrimitiveValue", "object"], | |
| 42 ["CSSRule", "object"], | 41 ["CSSRule", "object"], |
| 43 ["CSSRuleList", "object"], | 42 ["CSSRuleList", "object"], |
| 44 ["CSSStyleDeclaration", "object"], | 43 ["CSSStyleDeclaration", "object"], |
| 45 ["CSSStyleRule", "object"], | 44 ["CSSStyleRule", "object"], |
| 46 ["CSSStyleSheet", "object"], | 45 ["CSSStyleSheet", "object"], |
| 47 ["CSSValue", "object"], | |
| 48 ["CSSValueList", "object"], | |
| 49 ["CharacterData", "object"], | 46 ["CharacterData", "object"], |
| 50 ["Comment", "object"], | 47 ["Comment", "object"], |
| 51 ["Counter", "object"], | |
| 52 ["DOMException", "object"], | 48 ["DOMException", "object"], |
| 53 ["DOMImplementation", "object"], | 49 ["DOMImplementation", "object"], |
| 54 ["DOMParser", "object"], | 50 ["DOMParser", "object"], |
| 55 ["Document", "object"], | 51 ["Document", "object"], |
| 56 ["DocumentFragment", "object"], | 52 ["DocumentFragment", "object"], |
| 57 ["DocumentType", "object"], | 53 ["DocumentType", "object"], |
| 58 ["Element", "object"], | 54 ["Element", "object"], |
| 59 ["Event", "object"], | 55 ["Event", "object"], |
| 60 ["HTMLAnchorElement", "object"], | 56 ["HTMLAnchorElement", "object"], |
| 61 ["HTMLAppletElement", "object"], | 57 ["HTMLAppletElement", "object"], |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 ["MouseEvent", "object"], | 114 ["MouseEvent", "object"], |
| 119 ["MutationEvent", "object"], | 115 ["MutationEvent", "object"], |
| 120 ["NamedNodeMap", "object"], | 116 ["NamedNodeMap", "object"], |
| 121 ["Node", "object"], | 117 ["Node", "object"], |
| 122 ["NodeFilter", "object"], | 118 ["NodeFilter", "object"], |
| 123 ["NodeList", "object"], | 119 ["NodeList", "object"], |
| 124 ["OverflowEvent", "object"], | 120 ["OverflowEvent", "object"], |
| 125 ["ProcessingInstruction", "object"], | 121 ["ProcessingInstruction", "object"], |
| 126 ["ProgressEvent", "object"], | 122 ["ProgressEvent", "object"], |
| 127 ["Range", "object"], | 123 ["Range", "object"], |
| 128 ["Rect", "object"], | |
| 129 ["SVGAngle", "object"], | 124 ["SVGAngle", "object"], |
| 130 ["SVGGradientElement", "object"], | 125 ["SVGGradientElement", "object"], |
| 131 ["SVGLength", "object"], | 126 ["SVGLength", "object"], |
| 132 ["SVGMarkerElement", "object"], | 127 ["SVGMarkerElement", "object"], |
| 133 ["SVGPathSeg", "object"], | 128 ["SVGPathSeg", "object"], |
| 134 ["SVGPreserveAspectRatio", "object"], | 129 ["SVGPreserveAspectRatio", "object"], |
| 135 ["SVGRenderingIntent", "object"], | 130 ["SVGRenderingIntent", "object"], |
| 136 ["SVGTextContentElement", "object"], | 131 ["SVGTextContentElement", "object"], |
| 137 ["SVGTextPathElement", "object"], | 132 ["SVGTextPathElement", "object"], |
| 138 ["SVGTransform", "object"], | 133 ["SVGTransform", "object"], |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 211 |
| 217 ["closed", "boolean"], | 212 ["closed", "boolean"], |
| 218 ["offscreenBuffering", "boolean"], | 213 ["offscreenBuffering", "boolean"], |
| 219 ]; | 214 ]; |
| 220 | 215 |
| 221 // Also collect a list of only the property names. | 216 // Also collect a list of only the property names. |
| 222 var properties = []; | 217 var properties = []; |
| 223 for (var i = 0; i < propertyInfo.length; ++i) { | 218 for (var i = 0; i < propertyInfo.length; ++i) { |
| 224 properties.push(propertyInfo[i][0]); | 219 properties.push(propertyInfo[i][0]); |
| 225 } | 220 } |
| OLD | NEW |