summaryrefslogtreecommitdiff
path: root/dom
Commit message (Collapse)AuthorAge
* Issue #1818 - Part 1: remove a number of old GCC hacks.trav902022-04-15
|
* Fix Mesa check + whitespaceMoonchild2022-04-09
|
* No issue - Avoid WebGL crash on MesaMoonchild2022-04-08
| | | | This prevents too high vert-count draws that Mesa doesn't handle.
* Issue #1836 - Implement Selection.setBaseAndExtent()Moonchild2022-04-08
|
* Issue #1840 - Try to deal with bad website scripting loading/unloading modules.Moonchild2022-04-08
| | | | | | | | Apparently Bing does rapid-fire loading/unloading of module scripts that causes our attempts at resolving and initializing them to end up with null fetched modules. Returning null is probably a better way to handle this than crashing on ms->ModuleRecord() ;-)
* [DOM IndexedDB] Increase intermediate byte storage maximum capacity.Moonchild2022-04-08
|
* [DOM media] Handle truncated ADTS and MP3 resources.Paul Adenot2022-04-08
|
* Bug 1650214 - Cancel progress timer when shutting down FileReaderYaron Tausky2022-04-08
| | | | | | Not canceling the timer when run in a worker could lead to the timer firing after the primary worker runnable finished running, leading to an assertion failure in cycle collector code.
* [DOM] Stop treating XSLT meta refresh as a special snowflake thing.Moonchild2022-04-08
| | | | | It's just not healthy. It'll get delusions of self-importance and go rogue. Next thing you know it'll start identifying as other elements.
* Issue #953 - Neuter the user-facing controls for e10sMoonchild2022-04-08
| | | | | This should prevent people using a massive footgun that would blow off their entire legs. Requires appropriate FE changes.
* Issue #1853 - Map scrollbar-width to an element attribute.Moonchild2022-04-08
| | | | | By mapping this to an attribute, this allows browser themes to respond to the various available scrollbar width settings in CSS.
* Issue #1852 - Undo Stylo nonsense that breaks body and frame margins.Moonchild2022-04-08
| | | | | | | This restores support for using HTML tag styling of margins on the body. Reftests post bug still pass for dynamic changes, so does the newly-added test for body margins and frames that tests the old styling method. This also removes the reftest list for stylo testing for obvious reasons.
* [DOM] Align XHR requests with the spec.Moonchild2022-04-07
|
* [Docshell] Implement reload flood guardMoonchild2022-04-07
|
* [DOM] Don't try to create too large string buffersOlli Pettay2022-04-07
|
* [DOM] Fix handling of text fragmentsMoonchild2022-04-07
|
* Issue #21 - Remove calls to Services.telemetry and nsITelemetryMoonchild2022-04-07
| | | | These calls would cause breakage without the supporting plumbing.
* Revert "Merge pull request 'Update libcubeb to latest version' (#1812) from ↵Moonchild2022-04-05
| | | | | | | athenian200/UXP:libcubeb_final into master" This reverts commit 0bc66e3b04e77af307b62371ae9f4be70b2b19b7, reversing changes made to 6e6b5d89964ea726b264c711bdf6f02fe0c006f5.
* Merge pull request 'Update libcubeb to latest version' (#1812) from ↵athenian2002022-04-05
|\ | | | | | | | | | | athenian200/UXP:libcubeb_final into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/1812
| * Issue #1806 - Convert DOS line endings to Unix line endings.Jeremy Andrews2021-08-27
| | | | | | | | When redoing my work and creating a new file on Windows, I forgot to ensure it didn't have CRLF line endings.
| * Issue #1806 - Part 7: Fix up weird issue introduced when redoing branch.Jeremy Andrews2021-08-24
| | | | | | | | Apparently this time I accentally pulled a random + and - sign into a couple files because I wasn't careful to look at the raw versions on Bugzilla.
| * Issue #1806 - Part 5: Add multichannel audio capability.Jeremy Andrews2021-08-24
| | | | | | | | | | | | I'm positive this works on Windows at the very least. Cubeb added proper channel map support at some point, and this allows us to take advantage of that. Ref: BZ 1431221, BZ 1432779
| * Issue #1806 - Part 4: Add more audio troubleshooting information.Jeremy Andrews2021-08-24
| | | | | | | | This should help us troubleshoot audio issues better in the future in general, since we'll know more about the hardware involved, etc.
| * Issue #1806 - Part 3: Allow forcing a particular libcubeb backend.Jeremy Andrews2021-08-24
| | | | | | | | This streamlines troubleshooting in situations where multiple audio backends are compiled into the binary. Now testing different audio backends is as simple as restarting the browser and changing a pref rather than requiring a full recompile.
| * Issue #1806 - Part 2: Move AudioConfig stuff from MediaInfo.h to MediaData.h.Jeremy Andrews2021-08-24
| | | | | | | | This avoids circular dependencies, because otherwise the two headers would try to include each other.
| * Issue #1806 - Part 1: Restore libcubeb update.Jeremy Andrews2021-08-24
| | | | | | | | Restore the proper working environment for libcubeb work after reversion.
* | Merge branch 'master' of https://repo.palemoon.org/MoonchildProductions/UXPMoonchild2022-04-04
|\ \
| * | Revert "Issue #1806 - Part 2: Adjust the platform for lib changes"Moonchild2022-04-04
| | | | | | | | | | | | This reverts commit 3635039d2be6264673f3b89b8df390f03159fcaa.
* | | [DOM/XSLT] Pass sandbox flags from source doc.Moonchild2022-04-04
|/ /
* | Issue #21 - Remove Telemetry from Accessibility, EME and WebRTC.Moonchild2022-04-02
| |
* | Issue #21 - Remove Telemetry from Push and devtools.Moonchild2022-04-02
| |
* | Issue #21 - Remove Telemetry plumbing and fix build.Moonchild2022-04-02
| | | | | | | | | | Note this won't give working applications. Requires FE changes and additional js module changes (next part).
* | Issue #1806 - Follow-up: Fix WebRTC issues with cubeb update.Moonchild2022-04-02
| |
* | Issue #1835 - Part 2: Remove config and most mentions of XULRunnerMatt A. Tobin2022-04-01
| | | | | | | | Resolves #1835
* | Issue #1822 - Part 4: Remove URL classifier and internal blocklist errors.Moonchild2022-04-01
| | | | | | | | | | This removes NS_ERROR_{TRACKING|MALWARE|PHISHING|UNWANTED|BLOCKED}_URI that are no longer in use.
* | Issue #1822 - Part 3: Remove LOAD_CLASSIFIER_URI and variousMoonchild2022-04-01
| | | | | | | | helper functions.
* | Issue #1833 - Get rid of ArchiveReader APIAndrea Marchesini2022-04-01
| |
* | Issue #1053 - Remove Android systrace, more build system removals.Moonchild2022-04-01
| | | | | | | | Also updates more comments.
* | Issue #1053 - Clean up docs and some code comments.Moonchild2022-04-01
| | | | | | | | Polish only, no code changes.
* | Issue #1053 - Remove some Android compiler/runtime bug workarounds.Moonchild2022-04-01
| |
* | Issue #1053 - Remove /dom/system/android and dependent modules,Moonchild2022-04-01
| | | | | | | | as well as robocop.
* | Issue #1053 - First pass Android defines and remove Android AnnotationMoonchild2022-04-01
| | | | | | | | processors, some Andoid packaging stuff, Eclipse IDE support et al.
* | Issue #1832 - Account for shadow boundaries in nsFrameManager.Jeremy Andrews2022-04-01
| | | | | | | | Resolves #1832
* | Issue #1830 - Remove --disable-xul config and conditionals.Moonchild2022-04-01
| |
* | Issue #1721 - Implement GlobalPrivacyControlMoonchild2022-04-01
| | | | | | | | (and get rid of failed DoNotTrack)
* | Issue #1806 - Part 2: Adjust the platform for lib changesMatt A. Tobin2022-04-01
| |
* | [DOM] Use RefPtr in ContentChild::RecvGetFilesResponse.Moonchild2022-04-01
|/
* Revert "Issue #1806 - Update libcubeb"Moonchild2021-08-22
| | | | This reverts commit 741fd8b61ccc5b3a01ccf8ff154ccb8ce80ecc38.
* Issue #1797 - Implement WindowOrWorkerGlobalScope.originMoonchild2021-08-15
| | | | Resolves #1797
* Issue #1806 - Update libcubebMoonchild2021-08-12
| | | | | | This is a full lib update, changing callers where needed. This also moves GertCubeMSGLatencyInFrames to CubebUtils.{cpp|h} where it belongs.