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

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

Issue 449133003: Move Web-facing fullscreen APIs to DocumentFullscreen and ElementFullscreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 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
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementFullscreen.h » ('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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 // Shadow DOM API 108 // Shadow DOM API
109 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow Root(); 109 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow Root();
110 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; 110 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot;
111 NodeList getDestinationInsertionPoints(); 111 NodeList getDestinationInsertionPoints();
112 112
113 // CSSOM View Module API 113 // CSSOM View Module API
114 ClientRectList getClientRects(); 114 ClientRectList getClientRects();
115 ClientRect getBoundingClientRect(); 115 ClientRect getBoundingClientRect();
116 116
117 // Mozilla version
118 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
119 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags);
120
121 // W3C version
122 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullscreen] void webkitRequestFullscreen();
123
124 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); 117 [MeasureAs=ElementRequestPointerLock] void requestPointerLock();
125 118
126 // Event handler attributes 119 // Event handler attributes
127 attribute EventHandler onbeforecopy; 120 attribute EventHandler onbeforecopy;
128 attribute EventHandler onbeforecut; 121 attribute EventHandler onbeforecut;
129 attribute EventHandler onbeforepaste; 122 attribute EventHandler onbeforepaste;
130 attribute EventHandler oncopy; 123 attribute EventHandler oncopy;
131 attribute EventHandler oncut; 124 attribute EventHandler oncut;
132 attribute EventHandler onpaste; 125 attribute EventHandler onpaste;
133 attribute EventHandler onsearch; 126 attribute EventHandler onsearch;
134 attribute EventHandler onselectstart; 127 attribute EventHandler onselectstart;
135 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 128 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
136 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 129 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
137 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 130 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
138 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 131 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
139 attribute EventHandler onwebkitfullscreenchange;
140 attribute EventHandler onwebkitfullscreenerror;
141 attribute EventHandler onwheel; 132 attribute EventHandler onwheel;
142 }; 133 };
143 134
144 Element implements ParentNode; 135 Element implements ParentNode;
145 Element implements ChildNode; 136 Element implements ChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/dom/ElementFullscreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698