1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:18:12 +00:00

LibWeb: Add all HTML elements between L and Q

This commit is contained in:
Luke 2020-08-01 03:05:43 +01:00 committed by Andreas Kling
parent b90a91da4a
commit 1fbe4b2a2f
61 changed files with 1815 additions and 0 deletions

View file

@ -0,0 +1,9 @@
interface HTMLMarqueeElement : HTMLElement {
[Reflect] attribute DOMString behaviour;
[Reflect=bgcolor] attribute DOMString bgColor;
[Reflect] attribute DOMString direction;
[Reflect] attribute DOMString height;
[Reflect] attribute DOMString width;
}