LibWeb: Implement HTMLFrameElement.marginWidth

This commit is contained in:
Jamie Mansfield
2024-07-12 23:28:14 +01:00
committed by Andreas Kling
parent 4edc946aed
commit e363e89189

View File

@@ -16,6 +16,6 @@ interface HTMLFrameElement : HTMLElement {
[FIXME] readonly attribute WindowProxy? contentWindow;
[CEReactions, LegacyNullToEmptyString, Reflect=marginheight] attribute DOMString marginHeight;
[FIXME, CEReactions, LegacyNullToEmptyString] attribute DOMString marginWidth;
[CEReactions, LegacyNullToEmptyString, Reflect=marginwidth] attribute DOMString marginWidth;
};