mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This adds the WebIDl and implementation for the HTMLMarqueeElement type. The `<marquee>` HTML is now assigned this type. None of the contained properties or methods are implemented yet. Testing: Existing WPTs Signed-off-by: Luke Warlow <lwarlow@igalia.com>
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#the-marquee-element
|
|
[Exposed=Window]
|
|
interface HTMLMarqueeElement : HTMLElement {
|
|
[HTMLConstructor] constructor();
|
|
|
|
// [CEReactions, Reflect] attribute DOMString behavior;
|
|
// [CEReactions, Reflect] attribute DOMString bgColor;
|
|
// [CEReactions, Reflect] attribute DOMString direction;
|
|
// [CEReactions, Reflect] attribute DOMString height;
|
|
// [CEReactions, Reflect] attribute unsigned long hspace;
|
|
// [CEReactions] attribute long loop;
|
|
// [CEReactions, Reflect, ReflectDefault=6] attribute unsigned long scrollAmount;
|
|
// [CEReactions, Reflect, ReflectDefault=85] attribute unsigned long scrollDelay;
|
|
// [CEReactions, Reflect] attribute boolean trueSpeed;
|
|
// [CEReactions, Reflect] attribute unsigned long vspace;
|
|
// [CEReactions, Reflect] attribute DOMString width;
|
|
|
|
// undefined start();
|
|
// undefined stop();
|
|
};
|