summaryrefslogtreecommitdiff
path: root/dom/tests
Commit message (Collapse)AuthorAge
* Issue mcp-graveyard/UXP%1682 - Remove vibrator DOM interface and support code.Moonchild2020-11-13
| | | | Resolves %1682
* Issue mcp-graveyard/UXP%1656 - Part 8: Devtools and misc.Moonchild2020-09-24
|
* Issue mcp-graveyard/UXP%1656 - Part 6: Clean up the build filesMoonchild2020-09-23
|
* Issue mcp-graveyard/UXP%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.
* Issue mcp-graveyard/UXP%1587 - Part 7: Rename FetchController to AbortControllerMoonchild2020-06-11
| | | | | Also renames FetchSignal to AbortSignal. Includes renaming the various controlling prefs to enable.
* Issue mcp-graveyard/UXP%1587 - Part 6: Move FetchController/Signal to its ↵Moonchild2020-06-11
| | | | | | own dir Since it is specced separately from fetch.
* Issue mcp-graveyard/UXP%1587 - Part 5: Hook FetchObserver up to the Fetch APIMoonchild2020-06-11
|
* Issue mcp-graveyard/UXP%1587 - Part 4: Implement FetchObserverMoonchild2020-06-11
|
* Issue mcp-graveyard/UXP%1587 - Part 3: Hook FetchSignal up to the Fetch APIMoonchild2020-06-10
|
* Issue mcp-graveyard/UXP%1587 - Part 2: Implement controller follow/unfollowMoonchild2020-06-10
|
* Issue mcp-graveyard/UXP%1587 - Part 1: Implement FetchController/FetchSignal ↵Moonchild2020-06-10
| | | | interface
* Issue mcp-graveyard/UXP%1585 - Replace node.rootNode with node.getRootNode()Moonchild2020-06-10
| | | | | | | This removes the (default disabled) node.rootNode readonly attribute and replaces it with a node.getRootNode() function per WhatWG spec discussion. Based on work by John Dai <jdai@mozilla.com>
* Issue mcp-graveyard/UXP%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 mcp-graveyard/UXP%1525 - Kill marquee elementMoonchild2020-06-01
| | | | | | * Remove marquee code * Regenerate HTML Elements/parser code for Removal of Marquee. Co-authored-by: Gaming4JC <g4jc@hyperbola.info>
* Issue mcp-graveyard/UXP%1375 - Merge CustomElements pref with Webcomponents PrefMatt A. Tobin2020-04-17
|
* Bug 1417829 - Remove unresolved pseudoclassMatt A. Tobin2020-04-17
| | | | Tag mcp-graveyard/UXP%1375
* Bug 1418002 - Remove HTMLContentElementMatt A. Tobin2020-04-17
| | | | Tag mcp-graveyard/UXP%1375
* Bug 1416999 - Remove document.registerElementMatt A. Tobin2020-04-17
| | | | Tag mcp-graveyard/UXP%1375
* Bug 1396584 - Remove support for multiple ShadowRootsMatt A. Tobin2020-04-17
| | | | Tag mcp-graveyard/UXP%1375
* Bug 1407669 - Fix custom element creation hides uncatchable exceptions from ↵Gaming4JC2020-01-26
| | | | | | the constructor. Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1396620 - Part 1: Remove created callback for custom elementsGaming4JC2020-01-26
| | | | Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1400762 - Make dom.webcomponents.enabled pref doesn't control ↵Gaming4JC2020-01-26
| | | | | | CustomElements feature Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1405335 - Remove custom element attached and detached callbacks ↵Gaming4JC2020-01-26
| | | | | | validation checks Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1406325 - Part 2: Set CustomElementData when cloning a node.Gaming4JC2020-01-26
| | | | Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1378079 - Part 3: Complete the steps related to custom elements in ↵Gaming4JC2020-01-26
| | | | | | | | "create an element for a token". With fixup for missing header due to unified builds. Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1319342 - Clone a node should enqueue an upgrade reaction.Gaming4JC2020-01-26
| | | | Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1334043 - Part 3: Update tests for connected callback.Gaming4JC2020-01-26
| | | | Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1334051 - Part 2: Invoke attributeChangedCallback only if attribute name ↵Gaming4JC2020-01-26
| | | | | | | | | | | | | | is in the observed attribute list. We call attributeChangedCallback in two cases: 1. When any of the attributes in the observed attribute list has changed, appended, removed, or replaced. 2. When upgrading an element, for each attribute in element's attribute list that is in the observed attribute list. Note: w/ Fixup for not implementing an API Enhancement Bug 1363481. Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1315885 - Part 4: Implement callback reaction for custom element reactions.Gaming4JC2020-01-26
| | | | | | Note: Skipped SyncInvokeReactions since it is removed in CE v1, waste of time. Tag UXP Issue mcp-graveyard/UXP%1344
* Creating customized built-in elements without relevant definitions ↵Gaming4JC2020-01-26
| | | | | | | | registered first shouldn't throw NotFoundError; per spec change: https://github.com/w3c/webcomponents/issues/608 Tag UXP Issue mcp-graveyard/UXP%1344
* Bug 1274159 - Part 4: Add test cases for HTMLConstructor;Gaming4JC2020-01-26
| | | | Tag UXP Issue mcp-graveyard/UXP%1344
* Issue mcp-graveyard/UXP%1366 - Completely remove showModalDialogGaming4JC2020-01-21
|
* Bug 1322938 - Put <dialog> element behind preference.Gaming4JC2020-01-07
| | | | Tag mcp-graveyard/UXP%1343
* Bug 1322938 - Basic implementation of HTMLDialogElement.Gaming4JC2020-01-07
| | | | Tag mcp-graveyard/UXP%1343
* Issue mcp-graveyard/UXP%1118 - Part 6: Fix various tests that are no longer ↵wolfbeast2019-12-22
| | | | | | | correct. The behavior change of document.open() requires these tests to be changed to account for the new spec behavior.
* Issue mcp-graveyard/UXP%1328 - Part 3: Add fuzz to reftests and fix misc ↵Chris Peterson2019-12-18
| | | | other tests.
* Issue mcp-graveyard/UXP%1328 - Part 2: Change tests that require Courier New ↵wolfbeast2019-12-18
| | | | explicitly.
* Issue mcp-graveyard/UXP%1263 - Part 2: Remove DiskSpaceWatcher testswolfbeast2019-11-08
|
* Issue mcp-graveyard/UXP%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 mcp-graveyard/UXP%991 Part 5: DOM and layoutAscrod2019-04-13
|
* Bug 1298823 - Fix Request constructor - with "mode: navigate"janekptacijarabaci2018-07-05
|
* Bug 1394399 - Fix mochitests to expect "same-origin" default Request.credentialsjanekptacijarabaci2018-05-26
| | | | Issue mcp-graveyard/UXP%389
* moebius%231: Consider blocking top level window data: URIs (tests)janekptacijarabaci2018-05-06
| | | | https://github.com/MoonchildProductions/moebius/pull/231
* Adjust tests for android-enabled Intl.wolfbeast2018-05-03
|
* moebius%161: The Performance Resource Timing (make timestamps be relative to ↵janekptacijarabaci2018-04-29
| | | | | | startTime) https://github.com/MoonchildProductions/moebius/pull/161
* moebius%157: The Performance Observer (improvements)janekptacijarabaci2018-04-22
| | | | https://github.com/MoonchildProductions/moebius/pull/157
* moebius%140: Fix: Fetch - headers should sort and combinejanekptacijarabaci2018-04-14
| | | | https://github.com/MoonchildProductions/moebius/pull/140
* Bug 1430173 - Add Timer Rounding tests backported from -central to -esr. ↵Tom Ritter2018-03-14
| | | | | | | | | r=baku, a=RyanVM MozReview-Commit-ID: Jl4WZAamgrI --HG-- extra : transplant_source : E%DC%91lU%1C%A4l%2C%C8%23PCz%EB%F2%81%25%1F%90
* JS - make window.pageYOffset/pageXOffset/scrollX/scrollY doublejanekptacijarabaci2018-02-21
|
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02