summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* [FFmpeg] Don't define AV_CODEC_ID_VPx with libavcodec 58trav902018-12-28-3/+6
|
* [FFmpeg] Use new decode API with recent FFmpeg version.trav902018-12-28-7/+68
| | | | In libavcodec 58 and later, the old avcodec_decode_video2 is broken and only return the first visible frame found after a VP9 super-frame.
* Add UXP Coding Style guideline document (WIP)wolfbeast2018-12-26-0/+77
|
* Add performance warnings to Deprecated module.wolfbeast2018-12-24-7/+60
| | | | | | | | | | | Adds a dedicated handler for performance warnings to be logged to consoles if known performance-impacting methods are called. Search service init is changed from a deprecation warning to a performance warning for synchronous init. This also re-enables the warning for the Basilisk & Co. search service initialization which was previously removed in [a930a79] See also the discussion on #916.
* Fix crashiness of IntersectionObservers.wolfbeast2018-12-24-21/+25
| | | | Mozilla hashtables -still- suck.
* Merge pull request #919 from JustOff/nsIBrowserSearchService_async_initMoonchild2018-12-23-2/+2
|\ | | | | [PALEMOON] Initialize the search service asynchronously from 'about:home' and 'about:newtab'
| * [PALEMOON] Initialize the search service asynchronously from 'about:home' ↵JustOff2018-12-23-2/+2
|/ | | | and 'about:newtab'
* Re-enable intersection observers with WD spec patches.wolfbeast2018-12-22-2/+2
| | | | This resolves #249
* [intersection-observer] Calculate areas using int64_t.wolfbeast2018-12-22-4/+6
| | | | Tag #249
* Fix singed/unsigned type confusion for intersection threshold.wolfbeast2018-12-22-3/+3
| | | | Tag #249
* Use content area as the intersection rectangle ...wolfbeast2018-12-22-7/+11
| | | | | ... for custom root with overflow clip. Tag #249
* Map intersectionRect to the coordinate space of the target document.wolfbeast2018-12-22-7/+8
| | | | | | Spec says: "Map intersectionRect to the coordinate space of the viewport of the Document containing the target." Tag #249
* Use targetFrame->GetRectRelativeToSelf() as the initial intersection rect.wolfbeast2018-12-22-1/+1
| | | | Tag #249.
* Intersection ratio should be 1.0 for zero-area intersections.wolfbeast2018-12-22-1/+7
| | | | Tag #249
* Revise lifetime management of IntersectionObservers.wolfbeast2018-12-22-26/+46
| | | | Tag #249
* Replace status bar download overlay glow arrow with SVG.wolfbeast2018-12-21-1/+1
| | | | | Also remove the now no longer used png. Resolves #576.
* Return an empty set if getting recipes for host fails.wolfbeast2018-12-21-2/+7
| | | | | This avoids errors when _recipeManager is not (yet) available. This resolves #496.
* Merge pull request #914 from JustOff/PR_preprocessor_fixMoonchild2018-12-18-1/+1
|\ | | | | Fix false positives in the preprocessor-checker
| * Fix false positives in the preprocessor-checkerJustOff2018-12-18-1/+1
| |
* | Update SQLite lib to 3.26.0wolfbeast2018-12-18-10316/+26461
| |
* | Make sure channel-prefs.js is packaged into MAR files.wolfbeast2018-12-18-2/+1
|/
* Merge branch 'master' of https://github.com/MoonchildProductions/UXPwolfbeast2018-12-17-17857/+0
|\
| * Merge pull request #911 from trav90/code-cleanupMoonchild2018-12-16-17857/+0
| |\ | | | | | | Remove AndroidMediaDecoder
| | * Remove omx-plugin 3rd party libstrav902018-12-16-16012/+0
| | |
| | * Remove OMX related options from configuretrav902018-12-16-54/+0
| | |
| | * Remove AndroidMediaDecoder and friendstrav902018-12-16-1791/+0
| | | | | | | | | | | | They are no longer supported and don't work with newer Android versions anyway.
* | | Stub out FxA context menu functions.wolfbeast2018-12-17-80/+2
|/ / | | | | | | Tag #812
* | Stop including a dummy dll on Windows for broken old versions of WebSense.wolfbeast2018-12-16-53/+0
| | | | | | | | | | WebSense has moved to an extension solution instead of dll injection, so this dummy dll (for blocking injection) is no longer necessary.
* | Merge branch 'master' of https://github.com/MoonchildProductions/UXPwolfbeast2018-12-16-2240/+3430
|\|
| * Update HSTS preload listtrav902018-12-15-2240/+3430
| | | | | | | | Tag #447
* | Issue #910 part 3. Throw SyntaxError from Location::SetProtocol on URI parse ↵wolfbeast2018-12-16-1/+4
| | | | | | | | failures.
* | Issue #910 part 2. Strip ':' and anything following it from the string ↵wolfbeast2018-12-16-1/+8
| | | | | | | | passed to the location.protocol setter.
* | Issue #910 part 1. Don't navigate when location.protocol is set to anything ↵wolfbeast2018-12-16-0/+17
|/ | | | other than http or https.
* Clobber for NSPR+NSS updatewolfbeast2018-12-15-1/+1
|
* Update NSS to 3.41wolfbeast2018-12-15-8329/+47266
|
* Update NSPR to 4.20wolfbeast2018-12-15-14/+198
|
* Make HTMLOptionsCollection::mSelect into a strong reference.wolfbeast2018-12-14-59/+8
| | | | The cycle collector makes weak references like this obsolete.
* Do not report resource-timing subdocument loads triggered by that subdocument.wolfbeast2018-12-14-12/+108
|
* Prevent double free in mar_sign.cwolfbeast2018-12-13-0/+1
|
* Avoid overflow in nsPNGEncoder::WriteCallback.wolfbeast2018-12-13-13/+40
|
* Bump Goanna version for layout code changes.wolfbeast2018-12-13-1/+1
|
* Clear CanvasShutdownObserver::mCanvas when the canvas goes away.wolfbeast2018-12-13-2/+11
| | | | | | | | | This is fallout from Bug 1167235 - Use a fast method of double buffering for canvas. It is possible for the CanvasRenderingContext2D to be destroyed while we're in the middle of the call to nsObserverService::NotifyObservers() for shutdown. This leaves the shutdown observer with a dangling pointer to the canvas, so this patch explicitly clears the pointer when the context goes away.
* Avoid useless FrameNeedsReflow call.wolfbeast2018-12-13-0/+3
|
* Restrict ExtractLinearSum to find non-wrapping results.wolfbeast2018-12-13-1/+1
|
* Root parameter dictionaries in AesTask::Init().wolfbeast2018-12-13-3/+3
|
* Use canonical function in TypeNewScript::rollbackPartiallyInitializedObjects.wolfbeast2018-12-13-7/+26
|
* Merge pull request #898 from MoonchildProductions/Sync-weaveMoonchild2018-12-12-17649/+5749
|\ | | | | Remove FxA Phase 1
| * Merge branch 'master' into Sync-weavewolfbeast2018-12-10-5134/+1071
| |\
| * | Remove non-functional removal summary from quota dialog.wolfbeast2018-12-10-64/+0
| | |
| * | Restore quota view/warnings to Basilisk.wolfbeast2018-12-10-5/+407
| | |