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

Side by Side Diff: Source/WebCore/dom/Element.idl

Issue 9950115: Revert 111028 - Support W3C Full Screen API proposal (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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
« no previous file with comments | « Source/WebCore/dom/Element.cpp ('k') | Source/WebKit/mac/WebView/WebView.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 ClientRectList getClientRects(); 122 ClientRectList getClientRects();
123 ClientRect getBoundingClientRect(); 123 ClientRect getBoundingClientRect();
124 #endif 124 #endif
125 125
126 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 126 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
127 // Objective-C extensions 127 // Objective-C extensions
128 readonly attribute DOMString innerText; 128 readonly attribute DOMString innerText;
129 #endif 129 #endif
130 130
131 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API 131 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
132 // Mozilla version
133 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 132 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
134 [V8EnabledAtRuntime] void webkitRequestFullScreen(in [Optional=DefaultIs Undefined] unsigned short flags); 133 [V8EnabledAtRuntime] void webkitRequestFullScreen(in [Optional=DefaultIs Undefined] unsigned short flags);
135
136 // W3C version
137 [V8EnabledAtRuntime] void webkitRequestFullscreen();
138 #endif 134 #endif
139 135
140 // CSS Regions API 136 // CSS Regions API
141 readonly attribute DOMString webkitRegionOverflow; 137 readonly attribute DOMString webkitRegionOverflow;
142 138
143 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C 139 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C
144 // Event handler DOM attributes 140 // Event handler DOM attributes
145 attribute [NotEnumerable] EventListener onabort; 141 attribute [NotEnumerable] EventListener onabort;
146 attribute [NotEnumerable] EventListener onblur; 142 attribute [NotEnumerable] EventListener onblur;
147 attribute [NotEnumerable] EventListener onchange; 143 attribute [NotEnumerable] EventListener onchange;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchstart; 205 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchstart;
210 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchmove; 206 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchmove;
211 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchend; 207 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchend;
212 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchcancel; 208 attribute [NotEnumerable,Conditional=TOUCH_EVENTS,V8EnabledAtRuntime] Ev entListener ontouchcancel;
213 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenchange; 209 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenchange;
214 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenerror; 210 attribute [NotEnumerable, Conditional=FULLSCREEN_API] EventListener onwe bkitfullscreenerror;
215 #endif 211 #endif
216 }; 212 };
217 213
218 } 214 }
OLDNEW
« no previous file with comments | « Source/WebCore/dom/Element.cpp ('k') | Source/WebKit/mac/WebView/WebView.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698