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

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

Issue 456323002: [WIP] Re-implement MediaControls in Blink-in-JS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 [Reflect=class] attribute DOMString className; 100 [Reflect=class] attribute DOMString className;
101 [PerWorldBindings] readonly attribute DOMTokenList classList; 101 [PerWorldBindings] readonly attribute DOMTokenList classList;
102 102
103 [PerWorldBindings] readonly attribute DOMStringMap dataset; 103 [PerWorldBindings] readonly attribute DOMStringMap dataset;
104 104
105 // WebKit extension 105 // WebKit extension
106 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel ector] boolean webkitMatchesSelector(DOMString selectors); 106 [RaisesException, ImplementedAs=matches, MeasureAs=ElementPrefixedMatchesSel ector] boolean webkitMatchesSelector(DOMString selectors);
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 [RaisesException, OnlyExposedToPrivateScript] createUserAgentShadowRoot();
hajimehoshi 2014/08/11 09:32:51 TODO: This change and the changes around HTMLVideo
110 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot; 111 [PerWorldBindings] readonly attribute ShadowRoot shadowRoot;
111 NodeList getDestinationInsertionPoints(); 112 NodeList getDestinationInsertionPoints();
112 113
113 // CSSOM View Module API 114 // CSSOM View Module API
114 ClientRectList getClientRects(); 115 ClientRectList getClientRects();
115 ClientRect getBoundingClientRect(); 116 ClientRect getBoundingClientRect();
116 117
117 // Mozilla version 118 // Mozilla version
118 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 119 const unsigned short ALLOW_KEYBOARD_INPUT = 1;
119 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags); 120 [LogActivity, LogAllWorlds, MeasureAs=PrefixedElementRequestFullScreen] void webkitRequestFullScreen([Default=Undefined] optional unsigned short flags);
(...skipping 16 matching lines...) Expand all
136 [RuntimeEnabled=Touch] attribute EventHandler ontouchend; 137 [RuntimeEnabled=Touch] attribute EventHandler ontouchend;
137 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove; 138 [RuntimeEnabled=Touch] attribute EventHandler ontouchmove;
138 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart; 139 [RuntimeEnabled=Touch] attribute EventHandler ontouchstart;
139 attribute EventHandler onwebkitfullscreenchange; 140 attribute EventHandler onwebkitfullscreenchange;
140 attribute EventHandler onwebkitfullscreenerror; 141 attribute EventHandler onwebkitfullscreenerror;
141 attribute EventHandler onwheel; 142 attribute EventHandler onwheel;
142 }; 143 };
143 144
144 Element implements ParentNode; 145 Element implements ParentNode;
145 Element implements ChildNode; 146 Element implements ChildNode;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698