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

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

Issue 986583002: Collect host of Web Component usage to send to RAPPOR (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix typo Created 5 years, 9 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/core/dom/Element.cpp ('k') | Source/core/frame/OriginsUsingFeatures.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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 HTMLCollection getElementsByClassName(DOMString classNames); 58 HTMLCollection getElementsByClassName(DOMString classNames);
59 59
60 // DOM Parsing and Serialization 60 // DOM Parsing and Serialization
61 // https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.html#extensions-to-th e-element-interface 61 // https://dvcs.w3.org/hg/innerhtml/raw-file/tip/index.html#extensions-to-th e-element-interface
62 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Exp oseJSAccessors] attribute DOMString innerHTML; 62 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, Exp oseJSAccessors] attribute DOMString innerHTML;
63 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] att ribute DOMString outerHTML; 63 [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter] att ribute DOMString outerHTML;
64 [CustomElementCallbacks, RaisesException, MeasureAs=InsertAdjacentHTML] void insertAdjacentHTML(DOMString position, DOMString text); 64 [CustomElementCallbacks, RaisesException, MeasureAs=InsertAdjacentHTML] void insertAdjacentHTML(DOMString position, DOMString text);
65 65
66 // Shadow DOM 66 // Shadow DOM
67 // http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-int erface 67 // http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-element-int erface
68 [RaisesException, MeasureAs=ElementCreateShadowRoot] ShadowRoot createShadow Root(); 68 [RaisesException, CallWith=ScriptState, MeasureAs=ElementCreateShadowRoot] S hadowRoot createShadowRoot();
69 NodeList getDestinationInsertionPoints(); 69 NodeList getDestinationInsertionPoints();
70 [PerWorldBindings] readonly attribute ShadowRoot? shadowRoot; 70 [PerWorldBindings] readonly attribute ShadowRoot? shadowRoot;
71 71
72 // Pointer Lock 72 // Pointer Lock
73 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-element-interface 73 // https://dvcs.w3.org/hg/pointerlock/raw-file/default/index.html#extensions -to-the-element-interface
74 [MeasureAs=ElementRequestPointerLock] void requestPointerLock(); 74 [MeasureAs=ElementRequestPointerLock] void requestPointerLock();
75 75
76 // CSSOM View Module 76 // CSSOM View Module
77 // http://dev.w3.org/csswg/cssom-view/#extension-to-the-element-interface 77 // http://dev.w3.org/csswg/cssom-view/#extension-to-the-element-interface
78 // FIXME: getClientRect() and getBoundingClientRect() should 78 // FIXME: getClientRect() and getBoundingClientRect() should
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel; 142 [RuntimeEnabled=Touch] attribute EventHandler ontouchcancel;
143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 143 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 144 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 145 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
146 attribute EventHandler onwheel; 146 attribute EventHandler onwheel;
147 }; 147 };
148 148
149 Element implements ParentNode; 149 Element implements ParentNode;
150 Element implements ChildNode; 150 Element implements ChildNode;
151 Element implements NonDocumentTypeChildNode; 151 Element implements NonDocumentTypeChildNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Element.cpp ('k') | Source/core/frame/OriginsUsingFeatures.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698