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

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

Issue 14929004: Remove captureEvents and releaseEvents (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 ["captureEvents", "function"],
8 ["clearInterval", "function"], 7 ["clearInterval", "function"],
9 ["clearTimeout", "function"], 8 ["clearTimeout", "function"],
10 ["close", "function"], 9 ["close", "function"],
11 ["confirm", "function"], 10 ["confirm", "function"],
12 ["find", "function"], 11 ["find", "function"],
13 ["focus", "function"], 12 ["focus", "function"],
14 ["getComputedStyle", "function"], 13 ["getComputedStyle", "function"],
15 ["getMatchedCSSRules", "function"], 14 ["getMatchedCSSRules", "function"],
16 ["getSelection", "function"], 15 ["getSelection", "function"],
17 ["moveBy", "function"], 16 ["moveBy", "function"],
18 ["moveTo", "function"], 17 ["moveTo", "function"],
19 ["open", "function"], 18 ["open", "function"],
20 ["print", "function"], 19 ["print", "function"],
21 ["prompt", "function"], 20 ["prompt", "function"],
22 ["releaseEvents", "function"],
23 ["resizeBy", "function"], 21 ["resizeBy", "function"],
24 ["resizeTo", "function"], 22 ["resizeTo", "function"],
25 ["scroll", "function"], 23 ["scroll", "function"],
26 ["scrollBy", "function"], 24 ["scrollBy", "function"],
27 ["scrollTo", "function"], 25 ["scrollTo", "function"],
28 ["setInterval", "function"], 26 ["setInterval", "function"],
29 ["setTimeout", "function"], 27 ["setTimeout", "function"],
30 ["showModalDialog", "function"], 28 ["showModalDialog", "function"],
31 ["stop", "function"], 29 ["stop", "function"],
32 ["toString", "function"], 30 ["toString", "function"],
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 222
225 ["closed", "boolean"], 223 ["closed", "boolean"],
226 ["offscreenBuffering", "boolean"], 224 ["offscreenBuffering", "boolean"],
227 ]; 225 ];
228 226
229 // Also collect a list of only the property names. 227 // Also collect a list of only the property names.
230 var properties = []; 228 var properties = [];
231 for (var i = 0; i < propertyInfo.length; ++i) { 229 for (var i = 0; i < propertyInfo.length; ++i) {
232 properties.push(propertyInfo[i][0]); 230 properties.push(propertyInfo[i][0]);
233 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698