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

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

Issue 14990005: Remove ENTITY_REFERENCE_NODE (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove some empty lines Created 7 years, 7 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 | Annotate | Revision Log
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 ["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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698