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

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

Issue 2628923002: Make document.rootScroller into an origin trial (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 [NewObject, RaisesException, CallWith=ExecutionContext] Event createEvent(DO MString eventType); 72 [NewObject, RaisesException, CallWith=ExecutionContext] Event createEvent(DO MString eventType);
73 73
74 [NewObject] Range createRange(); 74 [NewObject] Range createRange();
75 75
76 // NodeFilter.SHOW_ALL = 0xFFFFFFFF 76 // NodeFilter.SHOW_ALL = 0xFFFFFFFF
77 [NewObject] NodeIterator createNodeIterator(Node root, optional unsigned lon g whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null); 77 [NewObject] NodeIterator createNodeIterator(Node root, optional unsigned lon g whatToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
78 [NewObject] TreeWalker createTreeWalker(Node root, optional unsigned long wh atToShow = 0xFFFFFFFF, optional NodeFilter? filter = null); 78 [NewObject] TreeWalker createTreeWalker(Node root, optional unsigned long wh atToShow = 0xFFFFFFFF, optional NodeFilter? filter = null);
79 79
80 // NonDocumentRootScroller (https://github.com/bokand/NonDocumentRootScrolle r) 80 // NonDocumentRootScroller (https://github.com/bokand/NonDocumentRootScrolle r)
81 [RaisesException=Setter, RuntimeEnabled=SetRootScroller, Measure] attribute Element? rootScroller; 81 [RaisesException=Setter, OriginTrialEnabled=RootScroller, Measure] attribute Element? rootScroller;
iclelland 2017/01/12 15:58:13 You'll also need to add a block in installConditio
bokan 2017/01/12 16:11:59 Do you mean in installConditionalFeatures? My feat
iclelland 2017/01/12 19:26:41 Yes, I totally mean that :) Sorry -- that's what I
82 82
83 // FIXME: xmlEncoding/xmlVersion/xmlStandalone have been removed from the sp ec. 83 // FIXME: xmlEncoding/xmlVersion/xmlStandalone have been removed from the sp ec.
84 [MeasureAs=DocumentXMLEncoding] readonly attribute DOMString? xmlEncoding; 84 [MeasureAs=DocumentXMLEncoding] readonly attribute DOMString? xmlEncoding;
85 [RaisesException=Setter, MeasureAs=DocumentXMLVersion] attribute DOMString? xmlVersion; 85 [RaisesException=Setter, MeasureAs=DocumentXMLVersion] attribute DOMString? xmlVersion;
86 [RaisesException=Setter, MeasureAs=DocumentXMLStandalone] attribute boolean xmlStandalone; 86 [RaisesException=Setter, MeasureAs=DocumentXMLStandalone] attribute boolean xmlStandalone;
87 87
88 // HTML 88 // HTML
89 // https://html.spec.whatwg.org/#the-document-object 89 // https://html.spec.whatwg.org/#the-document-object
90 90
91 // resource metadata management 91 // resource metadata management
(...skipping 117 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 | « no previous file | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698