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

Unified Diff: core/html/HTMLMarqueeElement.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLMapElement.idl ('k') | core/html/HTMLMediaElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLMarqueeElement.idl
diff --git a/core/html/HTMLMarqueeElement.idl b/core/html/HTMLMarqueeElement.idl
index 19841be88df72acee661ed29820d9f025b304e36..410331544198699f9510d9fc838195a5367fa0d7 100644
--- a/core/html/HTMLMarqueeElement.idl
+++ b/core/html/HTMLMarqueeElement.idl
@@ -17,16 +17,16 @@
* Boston, MA 02110-1301, USA.
*/
-interface HTMLMarqueeElement : HTMLElement {
- void start();
- void stop();
+// https://html.spec.whatwg.org/#htmlmarqueeelement
+interface HTMLMarqueeElement : HTMLElement {
[ImplementedInPrivateScript, Reflect] attribute DOMString behavior;
[ImplementedInPrivateScript, Reflect] attribute DOMString bgColor;
[ImplementedInPrivateScript, Reflect] attribute DOMString direction;
[ImplementedInPrivateScript, Reflect] attribute DOMString height;
[ImplementedInPrivateScript, Reflect] attribute unsigned long hspace;
[ImplementedInPrivateScript] attribute long loop;
+ // FIXME: scrollAmount and scrollDelay should be unsigned long.
[ImplementedInPrivateScript] attribute long scrollAmount;
[ImplementedInPrivateScript] attribute long scrollDelay;
[ImplementedInPrivateScript, Reflect] attribute boolean trueSpeed;
@@ -38,4 +38,13 @@ interface HTMLMarqueeElement : HTMLElement {
// attribute EventHandler onbounce;
// attribute EventHandler onfinish;
// attribute EventHandler onstart;
+
+ [ImplementedInPrivateScript] void start();
+ [ImplementedInPrivateScript] void stop();
+
+ // Private script APIs
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void createdCallback();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void attachedCallback();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void detachedCallback();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void attributeChangedCallback(DOMString name, DOMString oldValue, DOMString newValue);
};
« no previous file with comments | « core/html/HTMLMapElement.idl ('k') | core/html/HTMLMediaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698