summaryrefslogtreecommitdiffstats
path: root/dom/webidl/HTMLLinkElement.webidl
Commit message (Collapse)AuthorAgeLines
* Issue #1629 - Part 1: Implement basic logic in HTMLLinkElement.athenian2002020-08-13-1/+1
| | | | | | | | | | | | | | | So basically, I'm trying to adapt this to UXP: https://bugzilla.mozilla.org/show_bug.cgi?id=1281135 The earliest source of difficulty while adapting Bug 1281135 to our codebase was simply getting the new ErrorResult flag added to the SetDisabled function to play nice with the SetMozDisabled function. At this point, the implementation can actually have a stylesheet be disabled by default but there are supposedly issues with alternate stylesheets. At first I played around with the return type of SetMozDisabled to no avail, but I found another solution fairly quickly. https://bugzilla.mozilla.org/show_bug.cgi?id=846972 https://bugzilla.mozilla.org/show_bug.cgi?id=1157898 Essentially, the way around the problem of the number of return arguments not matching up is to declare a local variable within SetMozDisabled called ErrorResult rv, and using that to store the return value of the ErrorResult argument from SetDisabled. After that, because ErrorCode was removed, you would return rv.StealNSResult() in order to report success or failure to any consumer that calls on SetMozDisabled.
* Bug 1340027 - Part 2: Add HTML CEReactions annotation.Gaming4JC2020-01-26-11/+11
| | | | Tag UXP Issue #1344
* Bug 1274159 - Part 3-1: Add HTMLConstructor to HTMLElement and its subclass;Gaming4JC2020-01-26-0/+1
| | | | Tag UXP Issue #1344
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+58