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

Unified Diff: Source/core/html/HTMLMarqueeElement.idl

Issue 394773003: Implement HTMLMarqueeElement's animation in private scripts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
Index: Source/core/html/HTMLMarqueeElement.idl
diff --git a/Source/core/html/HTMLMarqueeElement.idl b/Source/core/html/HTMLMarqueeElement.idl
index 19841be88df72acee661ed29820d9f025b304e36..43d848511f1ed1fd8250aca4db2ed4752ace724f 100644
--- a/Source/core/html/HTMLMarqueeElement.idl
+++ b/Source/core/html/HTMLMarqueeElement.idl
@@ -18,8 +18,8 @@
*/
interface HTMLMarqueeElement : HTMLElement {
- void start();
- void stop();
+ [ImplementedInPrivateScript] void start();
+ [ImplementedInPrivateScript] void stop();
[ImplementedInPrivateScript, Reflect] attribute DOMString behavior;
[ImplementedInPrivateScript, Reflect] attribute DOMString bgColor;
@@ -33,6 +33,11 @@ interface HTMLMarqueeElement : HTMLElement {
[ImplementedInPrivateScript, Reflect] attribute unsigned long vspace;
[ImplementedInPrivateScript, Reflect] attribute DOMString width;
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void createdCallback();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void attachedCallback();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void detachedCallback();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void attributeChangedCallback();
+
// FIXME: Implement the following event handler attributes
// https://bugs.webkit.org/show_bug.cgi?id=49788
// attribute EventHandler onbounce;

Powered by Google App Engine
This is Rietveld 408576698