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

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

Issue 756313002: Remove CSSCharsetRule (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tests Created 6 years 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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 15 matching lines...) Expand all
26 ["scrollBy", "function"], 26 ["scrollBy", "function"],
27 ["scrollTo", "function"], 27 ["scrollTo", "function"],
28 ["setInterval", "function"], 28 ["setInterval", "function"],
29 ["setTimeout", "function"], 29 ["setTimeout", "function"],
30 ["showModalDialog", "function"], 30 ["showModalDialog", "function"],
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"],
37 ["CSSFontFaceRule", "object"], 36 ["CSSFontFaceRule", "object"],
38 ["CSSImportRule", "object"], 37 ["CSSImportRule", "object"],
39 ["CSSMediaRule", "object"], 38 ["CSSMediaRule", "object"],
40 ["CSSPageRule", "object"], 39 ["CSSPageRule", "object"],
41 ["CSSRule", "object"], 40 ["CSSRule", "object"],
42 ["CSSRuleList", "object"], 41 ["CSSRuleList", "object"],
43 ["CSSStyleDeclaration", "object"], 42 ["CSSStyleDeclaration", "object"],
44 ["CSSStyleRule", "object"], 43 ["CSSStyleRule", "object"],
45 ["CSSStyleSheet", "object"], 44 ["CSSStyleSheet", "object"],
46 ["CharacterData", "object"], 45 ["CharacterData", "object"],
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 210
212 ["closed", "boolean"], 211 ["closed", "boolean"],
213 ["offscreenBuffering", "boolean"], 212 ["offscreenBuffering", "boolean"],
214 ]; 213 ];
215 214
216 // Also collect a list of only the property names. 215 // Also collect a list of only the property names.
217 var properties = []; 216 var properties = [];
218 for (var i = 0; i < propertyInfo.length; ++i) { 217 for (var i = 0; i < propertyInfo.length; ++i) {
219 properties.push(propertyInfo[i][0]); 218 properties.push(propertyInfo[i][0]);
220 } 219 }
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Window/window-lookup-precedence-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698