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

Side by Side Diff: LayoutTests/fast/dom/Window/resources/WindowProperties.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 var windowFunctions = [ 1 var windowFunctions = [
2 // Functions implemented on the Window object's prototype 2 // Functions implemented on the Window object's prototype
3 "getSelection", 3 "getSelection",
4 "focus", 4 "focus",
5 "blur", 5 "blur",
6 "close", 6 "close",
7 "print", 7 "print",
8 "stop", 8 "stop",
9 "alert", 9 "alert",
10 "confirm", 10 "confirm",
(...skipping 15 matching lines...) Expand all
26 "atob", 26 "atob",
27 "btoa", 27 "btoa",
28 "open", 28 "open",
29 "setTimeout", 29 "setTimeout",
30 "clearTimeout", 30 "clearTimeout",
31 "setInterval", 31 "setInterval",
32 "clearInterval", 32 "clearInterval",
33 "addEventListener", 33 "addEventListener",
34 "removeEventListener", 34 "removeEventListener",
35 "showModalDialog", 35 "showModalDialog",
36 "captureEvents",
37 "releaseEvents",
36 38
37 // Functions from the Global Object 39 // Functions from the Global Object
38 "eval", 40 "eval",
39 "parseInt", 41 "parseInt",
40 "parseFloat", 42 "parseFloat",
41 "isNaN", 43 "isNaN",
42 "isFinite", 44 "isFinite",
43 "escape", 45 "escape",
44 "unescape", 46 "unescape",
45 "decodeURI", 47 "decodeURI",
46 "decodeURIComponent", 48 "decodeURIComponent",
47 "encodeURI", 49 "encodeURI",
48 "encodeURIComponent", 50 "encodeURIComponent",
49 51
50 // Functions from Object.prototype 52 // Functions from Object.prototype
51 "toString", 53 "toString",
52 "toLocaleString", 54 "toLocaleString",
53 "valueOf", 55 "valueOf",
54 "hasOwnProperty", 56 "hasOwnProperty",
55 "propertyIsEnumerable", 57 "propertyIsEnumerable",
56 "isPrototypeOf", 58 "isPrototypeOf",
57 "__defineGetter__", 59 "__defineGetter__",
58 "__defineSetter__", 60 "__defineSetter__",
59 "__lookupGetter__", 61 "__lookupGetter__",
60 "__lookupSetter__" 62 "__lookupSetter__"
61 ]; 63 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698