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

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

Issue 2573043002: Update stale links to dvcs.w3.org (Closed)
Patch Set: https Created 4 years 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
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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 // FIXME: clear(), captureEvents(), releaseEvents() and all are on HTMLDocum ent. 142 // FIXME: clear(), captureEvents(), releaseEvents() and all are on HTMLDocum ent.
143 143
144 // CSS Object Model (CSSOM) 144 // CSS Object Model (CSSOM)
145 // https://dev.w3.org/csswg/cssom/#extensions-to-the-document-interface 145 // https://dev.w3.org/csswg/cssom/#extensions-to-the-document-interface
146 attribute DOMString? selectedStylesheetSet; 146 attribute DOMString? selectedStylesheetSet;
147 readonly attribute DOMString? preferredStylesheetSet; 147 readonly attribute DOMString? preferredStylesheetSet;
148 148
149 readonly attribute Element? scrollingElement; 149 readonly attribute Element? scrollingElement;
150 150
151 // Pointer Lock 151 // Pointer Lock
152 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-document-interface 152 // https://w3c.github.io/pointerlock/#extensions-to-the-document-interface
153 attribute EventHandler onpointerlockchange; 153 attribute EventHandler onpointerlockchange;
154 attribute EventHandler onpointerlockerror; 154 attribute EventHandler onpointerlockerror;
155 [MeasureAs=DocumentExitPointerLock] void exitPointerLock(); 155 [MeasureAs=DocumentExitPointerLock] void exitPointerLock();
156 156
157 // Touch Events 157 // Touch Events
158 // https://w3c.github.io/touch-events/#extensions-to-the-document-interface 158 // https://w3c.github.io/touch-events/#extensions-to-the-document-interface
159 // FIXME: The arguments should not be optional. 159 // FIXME: The arguments should not be optional.
160 [RuntimeEnabled=TouchEventFeatureDetection, Measure, LegacyInterfaceTypeChec king, Custom=CallPrologue] 160 [RuntimeEnabled=TouchEventFeatureDetection, Measure, LegacyInterfaceTypeChec king, Custom=CallPrologue]
161 Touch createTouch([Default=Undefined] optional Window window, 161 Touch createTouch([Default=Undefined] optional Window window,
162 [Default=Undefined] optional EventTarget target, 162 [Default=Undefined] optional EventTarget target,
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation; 209 [RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute EventHa ndler onsecuritypolicyviolation;
210 attribute EventHandler onselectionchange; 210 attribute EventHandler onselectionchange;
211 attribute EventHandler onselectstart; 211 attribute EventHandler onselectstart;
212 attribute EventHandler onwheel; 212 attribute EventHandler onwheel;
213 }; 213 };
214 214
215 Document implements GlobalEventHandlers; 215 Document implements GlobalEventHandlers;
216 Document implements ParentNode; 216 Document implements ParentNode;
217 Document implements NonElementParentNode; 217 Document implements NonElementParentNode;
218 Document implements DocumentOrShadowRoot; 218 Document implements DocumentOrShadowRoot;
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/Element.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698