Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: LayoutTests/fast/dom/Window/resources/window-properties.js

Issue 143673005: Remove Entity interface (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ["CharacterData", "object"], 49 ["CharacterData", "object"],
50 ["Comment", "object"], 50 ["Comment", "object"],
51 ["Counter", "object"], 51 ["Counter", "object"],
52 ["DOMException", "object"], 52 ["DOMException", "object"],
53 ["DOMImplementation", "object"], 53 ["DOMImplementation", "object"],
54 ["DOMParser", "object"], 54 ["DOMParser", "object"],
55 ["Document", "object"], 55 ["Document", "object"],
56 ["DocumentFragment", "object"], 56 ["DocumentFragment", "object"],
57 ["DocumentType", "object"], 57 ["DocumentType", "object"],
58 ["Element", "object"], 58 ["Element", "object"],
59 ["Entity", "object"],
60 ["Event", "object"], 59 ["Event", "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"],
69 ["HTMLDListElement", "object"], 68 ["HTMLDListElement", "object"],
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 217
219 ["closed", "boolean"], 218 ["closed", "boolean"],
220 ["offscreenBuffering", "boolean"], 219 ["offscreenBuffering", "boolean"],
221 ]; 220 ];
222 221
223 // Also collect a list of only the property names. 222 // Also collect a list of only the property names.
224 var properties = []; 223 var properties = [];
225 for (var i = 0; i < propertyInfo.length; ++i) { 224 for (var i = 0; i < propertyInfo.length; ++i) {
226 properties.push(propertyInfo[i][0]); 225 properties.push(propertyInfo[i][0]);
227 } 226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698