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

Side by Side Diff: LayoutTests/fast/dom/Window/resources/WindowProperties.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 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 14 matching lines...) Expand all
25 // Functions currently implemented on the Window object itself. NOTE: these should be moved to the prototype. 25 // Functions currently implemented on the Window object itself. NOTE: these should be moved to the prototype.
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",
36 "captureEvents", 35 "captureEvents",
37 "releaseEvents", 36 "releaseEvents",
38 37
39 // Functions from the Global Object 38 // Functions from the Global Object
40 "eval", 39 "eval",
41 "parseInt", 40 "parseInt",
42 "parseFloat", 41 "parseFloat",
43 "isNaN", 42 "isNaN",
44 "isFinite", 43 "isFinite",
45 "escape", 44 "escape",
46 "unescape", 45 "unescape",
47 "decodeURI", 46 "decodeURI",
48 "decodeURIComponent", 47 "decodeURIComponent",
49 "encodeURI", 48 "encodeURI",
50 "encodeURIComponent", 49 "encodeURIComponent",
51 50
52 // Functions from Object.prototype 51 // Functions from Object.prototype
53 "toString", 52 "toString",
54 "toLocaleString", 53 "toLocaleString",
55 "valueOf", 54 "valueOf",
56 "hasOwnProperty", 55 "hasOwnProperty",
57 "propertyIsEnumerable", 56 "propertyIsEnumerable",
58 "isPrototypeOf", 57 "isPrototypeOf",
59 "__defineGetter__", 58 "__defineGetter__",
60 "__defineSetter__", 59 "__defineSetter__",
61 "__lookupGetter__", 60 "__lookupGetter__",
62 "__lookupSetter__" 61 "__lookupSetter__"
63 ]; 62 ];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698