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

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

Issue 174073007: Remove deprecated window.showModalDialog() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | 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 ["captureEvents", "function"], 7 ["captureEvents", "function"],
8 ["clearInterval", "function"], 8 ["clearInterval", "function"],
9 ["clearTimeout", "function"], 9 ["clearTimeout", "function"],
10 ["close", "function"], 10 ["close", "function"],
11 ["confirm", "function"], 11 ["confirm", "function"],
12 ["find", "function"], 12 ["find", "function"],
13 ["focus", "function"], 13 ["focus", "function"],
14 ["getComputedStyle", "function"], 14 ["getComputedStyle", "function"],
15 ["getMatchedCSSRules", "function"], 15 ["getMatchedCSSRules", "function"],
16 ["getSelection", "function"], 16 ["getSelection", "function"],
17 ["moveBy", "function"], 17 ["moveBy", "function"],
18 ["moveTo", "function"], 18 ["moveTo", "function"],
19 ["open", "function"], 19 ["open", "function"],
20 ["print", "function"], 20 ["print", "function"],
21 ["prompt", "function"], 21 ["prompt", "function"],
22 ["releaseEvents", "function"], 22 ["releaseEvents", "function"],
23 ["resizeBy", "function"], 23 ["resizeBy", "function"],
24 ["resizeTo", "function"], 24 ["resizeTo", "function"],
25 ["scroll", "function"], 25 ["scroll", "function"],
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"],
31 ["stop", "function"], 30 ["stop", "function"],
32 ["toString", "function"], 31 ["toString", "function"],
33 32
34 ["Attr", "object"], 33 ["Attr", "object"],
35 ["CDATASection", "object"], 34 ["CDATASection", "object"],
36 ["CSSCharsetRule", "object"], 35 ["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"],
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 216
218 ["closed", "boolean"], 217 ["closed", "boolean"],
219 ["offscreenBuffering", "boolean"], 218 ["offscreenBuffering", "boolean"],
220 ]; 219 ];
221 220
222 // Also collect a list of only the property names. 221 // Also collect a list of only the property names.
223 var properties = []; 222 var properties = [];
224 for (var i = 0; i < propertyInfo.length; ++i) { 223 for (var i = 0; i < propertyInfo.length; ++i) {
225 properties.push(propertyInfo[i][0]); 224 properties.push(propertyInfo[i][0]);
226 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698