summaryrefslogtreecommitdiff
path: root/dom/bindings
Commit message (Collapse)AuthorAge
* Issue #1980 - Fix build bustage for applications where WebRTC building is ↵Job Bautista2022-07-30
| | | | | | | | | | | | | | enabled. Turns out we have a duplicate VoidFunction callback in the WebIDLs. Per Mozilla bug 1324169, we should remove this callback from RTCPeerConnection.webidl and let Function.webidl handle it instead. The AttributeError faced by the new Basilisk dev wasn't helpful at all; and turns out Mozilla had this exact same issue on bug 1505504. We're also backporting that just in case we encounter another case of callback duplication. Also doing a minor fix in the MicroTaskRunnable class which Moonchild forgot to do while working on Issue #1895.
* Issue #1952 - m-c 1383775: Clean up function toString/toSource code, remove ↵Martok2022-07-01
| | | | remnants of source decompiler
* Issue #1742 - Part 1: Refactor rooting base class templatesMoonchild2022-05-24
| | | | Based on Bug 1325406
* Issue #21 - Remove use counters telemetryFranklinDM2022-04-24
| | | | | | This reverts Bug 968923 - Implement some equivalent of Chrome's use counters (on top of telemetry?) For reference: https://bugzilla.mozilla.org/show_bug.cgi?id=968923
* Issue #1835 - Part 2: Remove config and most mentions of XULRunnerMatt A. Tobin2022-04-01
| | | | Resolves #1835
* Issue #1833 - Get rid of ArchiveReader APIAndrea Marchesini2022-04-01
|
* Issue #1053 - Remove some Android compiler/runtime bug workarounds.Moonchild2022-04-01
|
* Issue #1792 - Part 4: Implement constructors for the EventTarget interface.Moonchild2021-07-12
|
* Issue #1792 - Part 1: Remove superfluous check for abstract ancestors.Moonchild2021-07-12
| | | | | | | | | | | | | | This removes some restrictions on whether an interface that implements QueryInterface can have a non-abstract ancestor. This restriction was put in place back when we automatically added QueryInterface to all rootmost non-abstract interfaces (~Pale Moon 24). At the time, we needed to make sure it did NOT end up on EventTarget, because back then WebIDL quickstubs would replace the QI implementation on non-WebIDL EventTargets with the WebIDL one, which would not work for them. Since then, we have removed WebIDL quickstubs and we now explicitly list which interfaces get QueryInterface, so this check is no longer needed.
* Issue #1783 - Part 2: Update ResizeObserver and resizeObserverSize.Moonchild2021-06-19
| | | | | | | This adds the later spec revision's contentBoxSize and borderBoxSize, and the inlineSize and blockSize concepts. The older spec contentRect remains functional as well for backwards compatibility with the earlier spec (that was IMHO perfectly fine as it was...)
* Issue #1656 - Part 8: Devtools and misc.Moonchild2020-09-24
|
* Issue #1656 - Part 6: Clean up the build filesMoonchild2020-09-23
|
* Issue #1656 - Part 3: Nuke more vim config lines in the tree.Moonchild2020-09-23
| | | | Another S&R run with some smarter matching.
* Issue #1656 - Part 1: Nuke most vim config lines in the tree.Moonchild2020-09-23
| | | | | | Since these are just interpreted comments, there's 0 impact on actual code. This removes all lines that match /* vim: set(.*)tw=80: */ with S&R -- there are a few others scattered around which will be removed manually in a second part.
* Output webidl filenames as they are processed, for real this time.Moonchild2020-09-23
|
* Isse #1224 - revert change to unbust debug builds.Moonchild2020-09-20
|
* Issue #1224 - Remove constant expressions from /domMoonchild2020-09-17
| | | | | This excludes DOMProxy handlers in dom bindings because that's intertwined with codegen and js that needs to be handled together.
* Issue #1643 - Part 2: Implement ResizeObserver APIMoonchild2020-09-16
| | | | Implements ResizeObserver, ResizeObserverEntry and ResizeObservation
* [DOM] Only construct JS-implemented objects if inner window is current.Kris Maglione2020-08-28
|
* Issue #1391 - Remove the DOM battery APIMoonchild2020-07-28
|
* Issue #439 - Remove, fix and clean up automated testsMoonchild2020-06-08
| | | | | | | With the big amount of code churn around DOM a lot of tests broke severely enough that they caused build bustage. This commit cleans up, removes or otherwise fixes tests that are broken, no longer relevant or obsolete.
* Issue #1564 - Fix debug build dependencieswolfbeast2020-05-26
|
* Issue #1538 - remove speech recognition engineMoonchild2020-05-20
| | | | | | | | | | | | | | | This removes speech recognition, pocketsphinx, training models and the speech automated test interface. This also re-establishes proper use of MOZ_WEBSPEECH to work for the speech API (synthesis part only) that was a broken mess before, with some synth parts being always built, some parts being built only with it enabled and recognition parts being dependent on it. I'm pretty sure it'd be totally busted if you'd ever have tried building without MOZ_WEBPEECH before. Tested that synthesis still works as-intended. This resolves #1538
* Bug 1422197 - Add fast path to get DocGroup in binding code for [CEReactions]Matt A. Tobin2020-04-17
| | | | Tag #1375
* Issue #1375 - Stop largely using the parser serviceMatt A. Tobin2020-04-17
| | | | | | | | | This is based on Bug 1395828 * Add nsHTMLElement::IsBlock() * Rename nsHTMLTags methods * Remove AssertParserServiceIsCorrect() * Remove most uses of nsIParserService/nsParserService
* Output webidl filenames as they are processedMatt A. Tobin2020-03-31
|
* Issue #80 - Stop building non-generated dom/binding files as UNIFIED_SOURCESMatt A. Tobin2020-02-08
| | | | Also fix deprot
* Directly assign PrimitiveConversions.h to the generated binding of ↵Matt A. Tobin2020-02-08
| | | | | | | | KeyframeAnimationOptions. This is a hack to deal UnifiedBindings trying to deal with an incomplete codegen implementation so it was worked around with a hack back in Firefox 30-something. If we have anymore of this non-sense crop up as stuff is added or removed from DOM then extend this conditional. Least until something better comes along.
* Issue #1395 - Remove FlyWeb ServiceMatt A. Tobin2020-02-06
|
* [WebRequest] Remove AddonManagerPermissions leftoverswolfbeast2020-01-29
| | | | | | This was added as part of the WebExtension sec issue CVE-2017-5389. Since we no longer have this interface, it needed to be removed to prevent errors in the WebRequest channel callback.
* Bug 1405821 - Move microtask handling to CycleCollectedJSContextGaming4JC2020-01-26
| | | | Tag UXP Issue #1344
* Bug 1415761 - Catch the exception and rethrow it after invoking custom ↵Gaming4JC2020-01-26
| | | | | | | | elements reactions; The spec was unclear on how CEReactions interact with thrown exceptions; see https://github.com/whatwg/html/issues/3217. The spec is now being clarified in https://github.com/whatwg/html/pull/3235. Tag UXP Issue #1344
* Bug 1392970 - Part 1: Make CustomElementDefinition ref-counted and put it in ↵Gaming4JC2020-01-26
| | | | | | CustomElementData. Tag UXP Issue #1344
* Bug 1299363 - Part 2: Allow prototype swizzling in html constructor.Gaming4JC2020-01-26
| | | | Tag UXP Issue #1344
* Bug 1299363 - Part 1: Implement construction stack.Gaming4JC2020-01-26
| | | | Tag UXP Issue #1344
* Bug 1359346 - Implement custom element state;Gaming4JC2020-01-26
| | | | | | https://dom.spec.whatwg.org/#concept-element-custom-element-state Tag UXP Issue #1344
* Bug 1309147 - Part 3: Implement the support for CEReactions in Codegen.Gaming4JC2020-01-26
| | | | Tag UXP Issue #1344
* Bug 1309147 - Part 2: Add the name of 'this' value's JSObject* for codegen ↵Gaming4JC2020-01-26
| | | | | | to generate CEReaction code. Tag UXP Issue #1344
* Bug 1309147 - Part 1: Implement the support for CEReactions in WebIDL parser.Gaming4JC2020-01-26
| | | | Tag UXP Issue #1344
* Bug 1274159 - Part 2-2: Support HTMLConstructor WebIDL extended attribute ↵Gaming4JC2020-01-26
| | | | | | for custom elements; Tag UXP Issue #1344
* Bug 1274159 - Part 1: Support looking up definitions by using constructor as ↵Gaming4JC2020-01-26
| | | | | | a key; Tag UXP Issue #1344
* Issue #1118 - Part 9: Don't allow reuse of unlinked CallbackObjectHolder.wolfbeast2019-12-23
|
* Issue #1322 - Part 4: Fix WebIDL.py parser for line endings and wrongwolfbeast2019-12-19
| | | | IDL name
* Issue #1322 - Part 3: Remove DOM promise interface gunkwolfbeast2019-12-19
| | | | Based on work by Boris Zbarsky
* Issue #1322 - Part 1: Remove the DOM Promise guts.wolfbeast2019-12-19
| | | | This removes all the parts guarded by SPIDERMONKEY_PROMISE
* Issue #1257 - Part 3: Remove/update tests.wolfbeast2019-10-27
| | | | | | | This removes a ton of tests that are no longer relevant with (un)watch removed (e.g. testing stability/bugs in the watchpoint system itself which has never been the most stable), and updates others that would previously rely on watch/unwatch, so that they don't unexpectedly fail.
* Issue #1257 - Part1: Remove watch class-hook and proxy trap.wolfbeast2019-10-26
|
* 1283712 - Part 7: Add nsIScriptErrorNote and nsIScriptError.notes.Gaming4JC2019-07-18
|
* 1332245 - Move nsScriptError from js/xpconnect to dom/bindings.Gaming4JC2019-07-18
|
* 1333045 - Update Location object properties to current spec.Gaming4JC2019-07-18
| | | | | | | Specifically, three changes: 1) valueOf should be non-enumerable. 2) valueOf should be === to Object.prototype.valueOf. 3) There should be no toJSON.