1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 13:58:49 +00:00

Issue #2548 - Part 4 - Fix some missed changes for ElementCSSInlineStyle. Introduce GlobalEventHandlers/DocumentAndElementEventHandlers/ElementCSSInlineStyle mixin. https://bugzilla.mozilla.org/show_bug.cgi?id=1579457

This commit is contained in:
Brian Smith
2026-03-18 19:26:32 -05:00
committed by roytam1
parent 20354b672f
commit 502c704770
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -93,6 +93,7 @@ interface mixin TouchEventHandlers {
HTMLElement includes GlobalEventHandlers;
HTMLElement includes DocumentAndElementEventHandlers;
HTMLElement includes ElementCSSInlineStyle;
HTMLElement includes TouchEventHandlers;
HTMLElement includes OnErrorEventHandlerForNodes;
+1 -2
View File
@@ -16,8 +16,6 @@ interface SVGElement : Element {
[Constant]
readonly attribute SVGAnimatedString className;
[SameObject] readonly attribute DOMStringMap dataset;
[PutForwards=cssText, Constant]
readonly attribute CSSStyleDeclaration style;
readonly attribute SVGSVGElement? ownerSVGElement;
readonly attribute SVGElement? viewportElement;
@@ -30,5 +28,6 @@ interface SVGElement : Element {
SVGElement includes GlobalEventHandlers;
SVGElement includes DocumentAndElementEventHandlers;
SVGElement includes ElementCSSInlineStyle;
SVGElement includes TouchEventHandlers;
SVGElement includes OnErrorEventHandlerForNodes;
+1
View File
@@ -133,6 +133,7 @@ interface mixin MozFrameLoaderOwner {
};
XULElement includes GlobalEventHandlers;
XULElement includes ElementCSSInlineStyle;
XULElement includes TouchEventHandlers;
XULElement includes MozFrameLoaderOwner;
XULElement includes OnErrorEventHandlerForNodes;