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 ["clearInterval", "function"], | 7 ["clearInterval", "function"], |
8 ["clearTimeout", "function"], | 8 ["clearTimeout", "function"], |
9 ["close", "function"], | 9 ["close", "function"], |
10 ["confirm", "function"], | 10 ["confirm", "function"], |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 ["Comment", "object"], | 48 ["Comment", "object"], |
49 ["Counter", "object"], | 49 ["Counter", "object"], |
50 ["DOMException", "object"], | 50 ["DOMException", "object"], |
51 ["DOMImplementation", "object"], | 51 ["DOMImplementation", "object"], |
52 ["DOMParser", "object"], | 52 ["DOMParser", "object"], |
53 ["Document", "object"], | 53 ["Document", "object"], |
54 ["DocumentFragment", "object"], | 54 ["DocumentFragment", "object"], |
55 ["DocumentType", "object"], | 55 ["DocumentType", "object"], |
56 ["Element", "object"], | 56 ["Element", "object"], |
57 ["Entity", "object"], | 57 ["Entity", "object"], |
58 ["EntityReference", "object"], | |
59 ["Event", "object"], | 58 ["Event", "object"], |
60 ["EventException", "object"], | 59 ["EventException", "object"], |
61 ["HTMLAnchorElement", "object"], | 60 ["HTMLAnchorElement", "object"], |
62 ["HTMLAppletElement", "object"], | 61 ["HTMLAppletElement", "object"], |
63 ["HTMLAreaElement", "object"], | 62 ["HTMLAreaElement", "object"], |
64 ["HTMLBRElement", "object"], | 63 ["HTMLBRElement", "object"], |
65 ["HTMLBaseElement", "object"], | 64 ["HTMLBaseElement", "object"], |
66 ["HTMLBodyElement", "object"], | 65 ["HTMLBodyElement", "object"], |
67 ["HTMLButtonElement", "object"], | 66 ["HTMLButtonElement", "object"], |
68 ["HTMLCanvasElement", "object"], | 67 ["HTMLCanvasElement", "object"], |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 | 221 |
223 ["closed", "boolean"], | 222 ["closed", "boolean"], |
224 ["offscreenBuffering", "boolean"], | 223 ["offscreenBuffering", "boolean"], |
225 ]; | 224 ]; |
226 | 225 |
227 // Also collect a list of only the property names. | 226 // Also collect a list of only the property names. |
228 var properties = []; | 227 var properties = []; |
229 for (var i = 0; i < propertyInfo.length; ++i) { | 228 for (var i = 0; i < propertyInfo.length; ++i) { |
230 properties.push(propertyInfo[i][0]); | 229 properties.push(propertyInfo[i][0]); |
231 } | 230 } |
OLD | NEW |