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

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

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

Powered by Google App Engine
This is Rietveld 408576698