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

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

Issue 1075393002: Implement Document.scrollingElement API behind experimental feature flag (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Minor fix and comment tweak Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.cpp » ('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, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 // http://dev.w3.org/csswg/cssom/#extensions-to-the-document-interface 141 // http://dev.w3.org/csswg/cssom/#extensions-to-the-document-interface
142 [SameObject] readonly attribute StyleSheetList styleSheets; 142 [SameObject] readonly attribute StyleSheetList styleSheets;
143 attribute DOMString? selectedStylesheetSet; 143 attribute DOMString? selectedStylesheetSet;
144 readonly attribute DOMString? preferredStylesheetSet; 144 readonly attribute DOMString? preferredStylesheetSet;
145 145
146 // CSSOM View Module 146 // CSSOM View Module
147 // http://dev.w3.org/csswg/cssom-view/#extensions-to-the-document-interface 147 // http://dev.w3.org/csswg/cssom-view/#extensions-to-the-document-interface
148 // FIXME: The x and y arguments should be of type double. 148 // FIXME: The x and y arguments should be of type double.
149 Element? elementFromPoint(long x, long y); 149 Element? elementFromPoint(long x, long y);
150 sequence<Element> elementsFromPoint(long x, long y); 150 sequence<Element> elementsFromPoint(long x, long y);
151 [RuntimeEnabled=DocumentScrollingElement] readonly attribute Element? scroll ingElement;
151 152
152 // Selection API 153 // Selection API
153 // http://w3c.github.io/selection-api/#extensions-to-document-interface 154 // http://w3c.github.io/selection-api/#extensions-to-document-interface
154 Selection? getSelection(); 155 Selection? getSelection();
155 156
156 // Pointer Lock 157 // Pointer Lock
157 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-document-interface 158 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-document-interface
158 attribute EventHandler onpointerlockchange; 159 attribute EventHandler onpointerlockchange;
159 attribute EventHandler onpointerlockerror; 160 attribute EventHandler onpointerlockerror;
160 [MeasureAs=DocumentPointerLockElement] readonly attribute Element? pointerLo ckElement; 161 [MeasureAs=DocumentPointerLockElement] readonly attribute Element? pointerLo ckElement;
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 attribute EventHandler onsearch; 220 attribute EventHandler onsearch;
220 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; 221 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation;
221 attribute EventHandler onselectionchange; 222 attribute EventHandler onselectionchange;
222 attribute EventHandler onselectstart; 223 attribute EventHandler onselectstart;
223 attribute EventHandler onwheel; 224 attribute EventHandler onwheel;
224 }; 225 };
225 226
226 Document implements GlobalEventHandlers; 227 Document implements GlobalEventHandlers;
227 Document implements ParentNode; 228 Document implements ParentNode;
228 Document implements NonElementParentNode; 229 Document implements NonElementParentNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698