Jump to content

My Browser Builds (Part 4)


Recommended Posts

New build of post-deprecated Serpent/moebius for XP!
* Notice: This repo will not be built on regular schedule, and changes are experimental as usual.
** Current moebius patch level should be on par with 52.9, but some security patches can not be applied/ported due to source milestone differences between versions.

Test binary:
Win32 http://o.rthost.win/basilisk/basilisk55-win32-git-20230506-12a6ce7d4-xpmod.7z
Win64 http://o.rthost.win/basilisk/basilisk55-win64-git-20230506-12a6ce7d4-xpmod.7z

repo: https://github.com/roytam1/basilisk55

Repo changes:
- partly import changes from tenfourfox: #651: M1761233 M1687303 M1633019 M1797336 M1799748 M1801102 (fb91afbb4) (3e3ea09c5)
- import from UXP: [No issue] Remove unmaintained WebGL conformance test suite. (733451d1) (31fa28a90)
- import from UXP: Revert "Issue #61 - Place Skia in libxul" (260f8e15) (ee13d3f06)
- import from UXP: Issue #61 - Follow-up: Fix gkmedias.dll link bustage related to Skia. (6e2f70a7) (16fdd9b67)
- import from UXP: Issue #61 - Follow-up: Fix xul.dll link bustage related to Skia. (4584069f) (adadb23a7)
- ported from UXP: No issue - Correct handling of async (arrow) functions declared inside constructors (ffe6d48a) (b7f8906a4)
- ported from UXP: Issue #1451 - Split hunspell library out of xul. (cbbc15ad) (5a8817b80)
- ported from UXP: Issue #1451 - Fix hunspell build bustage in FreeBSD. (d75c6c18) (40df3bb57)
- ported from UXP: [Basilisk] Issue MoonchildProductions/UXP#1451 - Support hunspell as shared library (61874576) (32f0703cf)
- ported from UXP: Issue #1691 - Part 1: Provide a way of associating a private value with a script or module. (1a6b3a82) (1022a6341)
- import from UXP: Issue #1691 - Part 2: Implement call import and import meta in the parser. M1427610 M1484948 (a8ab41b4) (73ee4c0c4)
- ported from UXP: Issue #1691 - Part 3: Finish implementing import meta. M1427610 (3f4985ce) (078117590)
- ported from UXP: Issue #1691 - Part 4: Finish implementing call import. M1499140 (7a6dab0b) (34837b0fb)
- ported from UXP: Issue #1691 - Part 5: Don't pre-create module metadata object when compiling. M1489477 (c965fbdd) (2c94edfc9)
- import from UXP: Issue #1691 - Part 5b: Stop modules from entraining the top-level JSScript. M1489477 (5c09a3b3) (8672505da)
- ported from UXP: Issue #1691 - Part 6a: Support private values which contain pointers to cycle-collected C++ objects M1342012 (1b811bd7) (77a0f0ffc)
- ported from UXP: Issue #1691 - Part 6b: Initial browser support for dynamic import from module scripts. M1342012 Factor out script fetch options from script load request classes. M1480720 Remove support for version parameter from script loader. M1428745 (86e0057e) (abf9ba523)
- ported from UXP: Issue #1691 - Part 6c: Fix a few issues with the earlier commits. Need PNK_CALL_IMPORT and PNK_IMPORT_META in the node children list or it will abort. When porting ScriptFetchOptions support, I had 2 constructors, I picked the wrong one. Missed adding the preference javascript.options.dynamicImport to all.js. (9a19e9d1) (ad255fdb7)
- import from UXP: Issue #1691 - Part 6d: Optimize handling of internally-created Promise objects. M1358879 The patch uses a different test: PROMISE_FLAG_DEFAULT_REJECT_FUNCTION which doesn't exist in our codebase. It was added in this bug, which appears to be partly complete: M1313049 (c3daecc2) (91a0792e4)
- import from UXP: Issue #1691 - Part 6e: Fix problems due to divergent codebases. This gets basic dynamic import working. Fix a problem in Part 5b where Mozilla used toGCThing() and we don't. Fix a problem in Part 4 where runtime() returns nullptr in our codebase since it runs on JS Helper thread. We need to get the runtime via runtimeFromAnyThread() instead. (e7d0b58e) (402ff385f)
- import from UXP: Issue #1691 - Part 7a: Add a JS API to get the private value for the calling script or module. M1342012 (62be5421) (37a112394)
- import from UXP: Issue #1691 - Part 7b: Make load request element optional. M1342012 (ba01d99e) (8597b9b31)
- import from UXP: Issue #1691 - Part 7c: Refactor ModuleScript into ClassicScript class and LoadedScript base class so we can represent all scripts that can perform dynamic import. M1342012 (41eda05e) (19260f4b0)
- import from UXP: Issue #1691 - Part 7d: Allow dynamic import in cases where there's no referencing script or module. Support dynamic import from classic scripts by creating ClassicScript objects and associating them with the compiled. M1342012 This patch is incomplete, some code in ScriptLoader::EvaluateScript() could not be applied for missing dependencies. Part 7e will apply the missing dependencies and finish the patch. (d5d7bb5e) (04c394101)
- import from UXP: Issue #1691 - Part 7e: Dependencies for required to finish part 7d. M1331662 Reimplement EvaluateString using the ExecutionContext class. M1316078 Extract redudant code into StartOffThreadParseTask. Use an ExclusiveContext instead of a JSContext in XDR functions. Add a script decoder as a valid off-main-thread parse-task. M900784 Add nsJSUtils functions for encoding and decoding the bytecode. M1316081 Add XDRIncrementalEncoder to replace delazified LazyScript in the encoded XDR buffer. Add an XDRIncrementalEncoder instance on the ScriptSource. Expose a new JSAPI to incrementally encode bytecode when it is generated. M1334091 XDR function use the sourceObject instead of the enclosingScript as argument. (99347628) (06bf20588)
- import from UXP: Issue #1691 - Part 7f: Split up compile and execute so we can use ClassicScript. M1342012 Refactor nsJSUtils::ExecutionContext to separate compilation and execution steps and allow extraction of compiled JSScript. M1366773 Move buffer argument from JS::StartIncrementalEncoding to JS::FinishIncrementalEncoding. (c69a47c3) (587bcc0be)
- ported from UXP: Issue #1691 - Part 8: Fix --enable-debug builds and continue dynamic module import changes. M1342012 Support import from timeout handlers by associating the initiating script with the compiled JSScript. Fix error message that covers all import() failures that don't throw a JS exception. M1331662 Partial - Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes. Left EvaluateString() in nsXBLProtoImplField.cpp until ExecutionContext errors can be fixed. (1109559a) (4e03b175f)
- ported from UXP: Issue #1691 - Part 9: Make import() work when the active script is in another document. M1342012 Associate event handler with active script when they are compiled. (be916ef7) (d227ff583)
- import from UXP: Issue #1691 - Part 10: Add and use method to annotate CC crashes with a class name. M1277260 Make PtrInfo into a class and mark it final. Also fix an erroneous debug assert because mBaseURL not set in one code path. (7e056a6f) (b83cfd9ba)
- import from UXP: Issue #1691 - Part 11: Fix incorrect reference counting in ModuleScript class. (edb82ec9) (8c3bfc03c)
- import from UXP: Issue #1691 - Part 12: Fix return value in ExecScript() and debug assert in ParseTask. M1331662 Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes. ExecutionContext: The mRetValue is not used even though it is checked in various asserts. This is how it is in the Mozilla code even years later, only the passed in value is used. ParseTask: JoinDecode() and JoinCompile() run the same code but the type is different causing a debug assert when it checks the type Script vs ScriptDecode. (a892a759) (9fdf52734)
- import from UXP: Issue #1691 - Part 13: Remove MUST_MATCH_TOKEN* macros in Parser. M1501928 This was helpful in debugging one of the crashes, the macros made debugging a nightmare. (bc895eba) (8d2458b94)
- import from UXP: Issue #1691 - Part 14: Fix a debug assert and memory leak. PNK_IMPORT_META and PNK_CALL_IMPORT are binary nodes... They function similar to list nodes, so they worked there, but debug mode asserts because of the wrong type. M1342012 Fixed a memory leak due to missing code in SourceScriptObject::finalize(). Thanks FranklinDM! (79ea755b) (fa44d05ea)
- import from UXP: Issue #1691 - Part 15: Make |new import()| a syntax error. M1508672 (f2b17915) (feb198e33)
- import from UXP: Issue #1691 - Part 16: Dynamically imported modules can throw any value as an exception. M1508672 (1ac1e90b) (a527f407f)
- import from UXP: Bug 1432272 - Make Fetch API use the global's base URL instead of the entry document's base URL (62e2fbc4) (54d5f6d94)
- import from UXP: Issue #2218 - Part 1: Add nsExpirationTracker::NotifyEndTransaction(Locked) callbacks for subclasses to know when an aging iteration is complete (fa787f4a) (244c0c67c)
- import from UXP: Issue #2218 - Part 2: Make SurfaceCache free ImageSurfaceCache objects outside of the lock (93644fd3) (8c8565325)
- import from UXP: Issue #2073 - Follow-up: Use internal Move instead of std::move for consistency (b7f217e5) (518f36803)
- import from UXP: Issue #2213 - Follow-up: Fix derieved Generator prototypes after previous change (a27e8bf9) (a8b11959d)
- import from UXP: Issue #2173 - Follow-up: Use common ancestor of PNK_(OPT)DOT in ASTSerializer::expression (e31a058c) (b4697c603)
- import from UXP: Issue #1285 - Follow-up: Correctly handle follow-up compilations of RegExp with named capturing groups (0a74a575) (f69d8b75c)
- import from UXP: Issue #1691 - Follow-up: Fix CallSelfHostedFunction deprot introduced by Part 4. (45b34592) (d371dc0ff)
- js/intl: fix INITIAL_CHAR_BUFFER_SIZE deprot (601ac53b2)
- ported from UXP: Issue #2221 - Enable link-time optimization for Spidermonkey by default if building it shared. (b592711b) (7ae527e24)
- import from UXP: Issue #1862 - Follow-up: Replace deprecated Harfbuzz functions with current ones. (51426d10) (ef0dd070b)
- import from UXP: Issue #1691 - Follow-up: use error message with no arguments for bad import statements (73a99c15) (a71c910d8)
- import from UXP: Issue #2142 - Fold BytecodeEmitter::checkTypeSet into BytecodeEmitter::emitCheck (014ebe8a) (029021f3c)
- import from UXP: Issue #2142 - Extend newSuperCall for JSOP_SPREADSUPERCALL (6f56a494) (344b7d658)
- import from UXP: Issue #2142 - Change InitPropertyOperation to accept a PropertyName directy and use DefineDataProperty (627d0da7) (ccbc00747)
- import from UXP: Issue #2142 - Add predicate functions count_if and any_of to ListNode iterator (3b9b111b) (714b1b03b)
- import from UXP: Issue #2142 - Ensure 'await' is always a restricted identifier when parsing modules (faed047e3) (a47d91de5)
- import from UXP: Issue #2142 - Reduce calls to FindReservedWord when checking for forbidden identifiers during parsing (6abb54ff) (b9c4c5d9c)
- import from UXP: Issue #2142 - Add internal option for fields, but always true (afa7bddc) (22b1cac6d)
- ported from UXP: Issue #2142 - Implement syntax for public/private fields and computed field names (51db22ff) (d22df591a)
- import from UXP: Issue #2142 - Improve TokenPos handling in BCE (ab7721e4) (9ba8f749e)
- import from UXP: Issue #2142 - Add PropertyEmitter, ObjectEmitter, ClassEmitter, LexicalScopeEmitter, DefaultEmitter (1b89be6d) (356f75e7a)
- import from UXP: Issue #2142 - Add FunctionEmitter, FunctionScriptEmitter, and FunctionParamsEmitter with current methods (e6335ded) (c7278ac50)
- ported from UXP: Issue #2142 - Handle fields in derived classes (235ca779) (a99f5306e)
- import from UXP: Issue #2142 - Factor out PropertyName parsing from Parser::propertyName() (014953c5) (4ddfdce78)
- import from UXP: Issue #2142 - Implement ASI for fields (447261cf) (245dcb71a)
- import from UXP: Issue #2142 - Use JSOP_INITPROP for field initializers (849ab441) (2e478fa3a)
- import from UXP: Issue #2142 - Restrict contents of direct eval in fields (8c675001) (69b9b9d1e)
- import from UXP: Issue #2142 - Fix several scoping issues in field initializers (bcb6203e) (df2cf3a69)
- import from UXP: Issue #2142 - Pass through arguments in synthesized constructors for derived classes (1031b1fc) (730dc53bf)
- import from UXP: Issue #2142 - Emit field keys in correct order (f374ab47) (d65e1f6f8)
- import from UXP: Issue #2142 - Don't treat PNK_NAME specially emitAssignmentOrInit (f0b06f5a) (546b8e2df)
- import from UXP: Issue #2142 - Set anonymous function name in field initializer (c2061149) (47e80f4fd)
- import from UXP: Issue #2142 - Optimize .initializers scoping and emitter (e0b5528c) (cb4c73a77)
- import from UXP: Issue #2142 - Support SuperProperty in field initializers (b187006a) (ebad409f2)
- import from UXP: Issue #2142 - Parse and process static class fields (c3b19191) (6350b94e5)
- ported from UXP: Issue #2142 - Track isFieldInitializer on JSScript instead of Scope (22a9d46e) (6bc92f0ed)
- import from UXP: Issue #2142 - Implement class static block (1fac189a) (a9b66c108)
- import from UXP: Issue #2142 - Remove the temporary fields option (ba9647a1) (adf87b5b6)
- import from UXP: Issue #2097 - Implement logical assignment operators (10951a16) (99f72d0d0)
- js/frontend: Parser: sync with UXP (fe66435bf)
- ported from UXP: Issue #2097 - Handle Logical Assignment in Ion CFG (a7d8cecd) (08db3546a)
- import from UXP: Issue #1691 - Follow-up: Fix videojs and potentially other problems. When rewriting the ExecutionContext code in ScriptLoader I accidentally removed some required code. (a1f787fc) (03cce35b2)
- import from UXP: Issue #2225 - Implement Element.replaceChildren (ae50e9e0) (8921a9b24)
- import from UXP: Issue #2142 - follow-up rev 51db22ff, removing `static` keyword from upstream force-push rev aa6d42e5fc..63a00fdd25 (fa52ac97) (41a3cbe0e)
- import from UXP: Issue #1656 - remove vim control lines from js/src (e6ff567d) (72248e597)
- import from UXP: Issue #1656 - Remove more vim control lines. (d388e478) (96020b803)
- import from UXP: Issue #1656 - Remove more vim control lines. (c9b8a576) (9b84ad4a8)
- ported from UXP: Issue #1656 - Remove more vim control lines. (2f117eec) (e7ff59ccc)
- ported from UXP: Issue #1656 - Remove more vim control lines. (a39fd9e7) (7fc67fe8b)
- import from UXP: Issue #1656 - Remove more vim control lines. (f1759b33) (71525b30b)
- import from UXP: No Issue - Do not parse or return body for XHRs with HEAD/CONNECT method or content-length=0 (84eadbe3) (533c3fa24)
- import from UXP: Issue #1691 - Follow-up: Ship dynamic module imports enabled by default. (5b7f259a) (12a6ce7d4)

Link to comment
Share on other sites


New NewMoon 27 Build!

32bit https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230506-967126c55b-xpmod.7z
32bit SSE https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230506-967126c55b-xpmod-sse.7z
32bit noSSE https://o.rthost.win/palemoon/palemoon-27.10.0.win32-git-20230506-967126c55b-xpmod-ia32.7z

64bit https://o.rthost.win/palemoon/palemoon-27.10.0.win64-git-20230506-967126c55b-xpmod.7z

source repo: https://github.com/roytam1/palemoon27

repo changes since my last build:
- import changes from `dev' branch of rmottola/Arctic-Fox:
 - Bug 1225486 - don't include mozilla/ToString.h in {BasePoint,nsRegion}.h; r=jrmuizel (33ffb885b7)
 - Bug 1069417 - Generalize Matrix4x4 into Matrix4x4Typed<SourceUnits, TargetUnits>. r=Bas (ef50fbb874)
 - Bug 1229202 (part 1) - Remove some unused arguments in nsPrintEngine's functions. r=mattwoodrow. (7368283f53)
 - Bug 1229202 (part 2) - Remove gfxQuartzSurface::GetCGContextWithClip, which is unused. r=mattwoodrow. (611ebc211e)
 - Bug 1229202 (part 3) - Make gfxContextAutoDisableSubpixelAntialiasing take a DrawTarget instead of a gfxContext. r=mattwoodrow. (eac64c2002)
 - Bug 1229202 (part 4) - Remove an unused gfxContextAutoSaveRestore. r=mattwoodrow. (050fc5796d)
 - Bug 1229202 (part 5) - Remove an unneeded gfxContextAutoSaveRestore. r=mattwoodrow. (966558456b)
 - Bug 1229202 (part 6) - Remove two nasty matrix reinterpret_casts. r=mattwoodrow. (c27b247af7)
 - Bug 1229202 (part 7) - Pass a DrawTarget to gfxXlibNativeRenderer::DrawDirect(). r=mattwoodrow. (8356148bdb)
 - Bug 1187134 (part 1) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (f7adf5b45f)
 - Bug 1187134 (part 2) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (4af6bd04f0)
 - Bug 1187134 (part 3) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (ad822eefa9)
 - Bug 1187134 (part 4) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (b49e0625b4)
 - Bug 1187134 (part 5) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (cb88e0d11f)
 - Bug 1181040 - Always disable sccache when doing PGO builds. r=gps (d5b19682ee)
 - Bug 1229613 - Properly disable sccache on PGO builds. r=mshal (930caf31b3)
 - Bug 1164921 - part 3 - make more things depend on CONFIG[MOZ_ANDROID_CXX_STL]; r=glandium (e437ffb734)
 - Bug 1207288. Ask ANGLE for the correct output version. r=jgilbert (43ab163d70)
 - Bug 1219890. Construct context arguments on the stack. r=jgilbert (6bc3b04360)
 - Bug 1219890. Use ES3 when appropriate. r=jgilbert (9cd5e81934)
 - missing bit of Bug 1200595 - Consolidate the TextureClient's destruction logic. (96d02c0a21)
 - Bug 1219890. Make assignment operator and copy constructor default. r=jgilbert (27e886223f)
 - Bug 1228182 - Use division directly for generating double in XorShift128PlusRNG. r=Waldo (02b90bfcab)
 - Bug 322529 part 1 - Use XorShift128PlusRNG for Math.random(). r=jwalden (bc70756ff6)
 - Bug 322529 part 2 - Add xor64 and add64 to macro-assemblers. r=arai (ba54b70a25)
 - Bug 322529 part 3 - Fix LRandom JIT code to use the new algorithm. r=arai,jwalden (8ba7676a56)
 - Bug 322529 part 4 - Fix setRNGState shell function and math-random.js jit-test. r=arai (462a4779f9)
 - Bug 322529 part 5 - Give Windows ExecutableAllocator its own XorShift128+ RNG. r=jwalden (0f96f35586)
 - fix warnings (e564ce4515)
 - Bug 1197282 - Include <atomic> in VideoDecoder.h. r=cpearce (aeb12e6082)
 - Bug 1195939 - Flush decode queue on Reset() in gmp-clearkey - r=cpearce (4dcbde99e0)
 - Bug 1186406 - Copy input to ClearKey's decoder, so we can return its containing shmem earlier. r=gerald (d8764fa545)
 - Bug 1228461 - Don't assert we must have keys for keyIds we've seen in ~ClearKeySession(). r=gerald (4ddcbe699f)
 - Bug 1228461 - Implement keyids initData type for ClearKey. r=gerald (09213c5e5f)
 - Bug 1230026 - Support 'webm' initDataType format for MP4 ClearKey initData. r=gerald (b64a9e6a21)
 - Bug 1173631 - [EME] Implement async shutdown in clearkey GMP. r=cpearce (366ec9235c)
 - Bug 1181436 - Use 'gmp-api/' prefix consistently in includes in gmp-clearkey. r=gerald (eb4f4344c0)
 - Bug 1185388 - Limit the number of cores used by WMF in ClearKey CDM -r=cpearce (9014cf6c29)
 - Bug 1214469 - Ensure gmp-clearkey accounts for mNumInputTasks when flushing. r=gerald (5c2e691b64)
 - Bug 1226430 - Remove alg from ClearKey license parser. r=gerald (43bf12a3b6)
 - Bug 1157728: Removed StackArena::Init() and call to it as it is now useless. r=dholbert (fee41513de)
 - Bug 1161392 - Enlarge touch area for AccessibleCaret. r=roc (15e9b18206)
 - Bug 1207934 - Reset mImaginaryCaretRect if it is out of scrollport. r=roc (3d00572dd8)
 - Bug 1225699 part 1 - Add EffectSet class; r=smaug (c4e255a722)
 - Bug 1225699 part 2 - Add Add/RemoveEffect to EffectSet; r=smaug (70d1e3ada2)
 - Bug 1225699 part 3 - Register and unregister effects with elements; r=smaug, r=heycam (7d6478b017)
 - Bug 1225699 part 4 - Add iterator to EffectSet; r=heycam (cf28cff0f4)
 - Bug 1225699 part 5 - Use EffectSet in Element::GetAnimations; r=heycam (0fdb687623)
 - Bug 1225699 part 6 - Use strong refs to store effects on their target elements; r=smaug (078c58732c)
 - Bug 1225699 part 7 - Keep effect properties when the ownerDocument of the element changes; r=smaug (ddd3ab54b1)
 - Bug 1226118 part 1 - Add EffectSet::GetEffectSet(const nsIFrame*); r=dholbert (407533395c)
 - Bug 1226118 part 2 - Use EffectSet in nsLayoutUtils animation functions; r=dholbert (808525d54b)
 - Bug 1226118 part 3 - Use EffectSet in CommonAnimationManager::ClearIsRunningOnCompositor; r=hiro, r=dholbert (e5020bdc23)
 - Bug 1226118 part 4 - Use EffectSet in ActiveLayerManager's animated-scale checks; r=dholbert (ef725a9753)
 - Bug 1226118 part 5 - Move LogAsyncAnimationFailure to AnimationUtils; r=dholbert (aa2104cd55)
 - Bug 1226118 part 6 - Remove no longer used LayerAnimationRecord/Info code from AnimationCommon; r=dholbert (6355d4132e)
 - Bug 1226118 part 7 - Rename and rework KeyframeEffectReadOnly::CanAnimatePropertyOnCompositor to ShouldBlockCompositorAnimations; r=hiro (5ae5113f87)
 - Bug 1226118 part 8 - Add EffectCompositor::GetAnimationsForCompositor that uses the EffectSet rather than AnimationCollection; r=dholbert (07067af8b8)
 - Bug 1226118 part 9 - Use EffectCompositor::GetAnimationsForCompositor in nsDisplayList; r=dholbert (7b857c5030)
 - Bug 1226118 part 10 - Use EffectCompositor::GetAnimationsForCompositor in nsLayoutUtils; r=dholbert (af9221073b)
 - Bug 1226118 part 11 - Remove CommonAnimationManager::GetAnimationsForCompositor; r=dholbert (02865b2413)
 - Bug 1226118 part 12a - Make RestyleManager::GetMaxAnimationGenerationForFrame used frame-based GetAnimationCollection; r=dholbert (34644baa17)
 - Bug 1226118 part 12b - Rename CommonAnimationManager::GetAnimations to GetAnimationCollection; r=dholbert (fc391019a2)
 - Bug 1226118 part 13 - Move the GetAnimationCollection definitions side-by-side; r=dholbert (8828457ba1)
 - Bug 1226118 part 14 - Rewrite GetAnimationCollection(nsIFrame*) in terms of the existing GetAnimationCollection; r=dholbert (d7256f9a5b)
 - Bug 1226118 part 15 - Remove no-longer-necessary delays from test_running_on_compositor.html; r=hiro (bd70ec1d14)
 - Bug 1183786 - Part 1: Refactor timer setup code into a helper function. r=dholbert (b383718880)
 - Bug 1183786 - Part 2: Delay updating after prefs changed if detached. r=tn r=dholbert (90e1564a20)
 - Bug 1183786 - Part 3: Make nsPresContext helper-function return already_AddRefed instead of bool+outparam. r=tn (30acf78f3d)
 - Bug 1183786 - Part 4: Drop unnecessary '!!' boolification. r=tn (66c94926a6)
 - Bug 1168180 - Mark nsPresContext::mShell as MOZ_NON_OWNING_REF. r=dbaron (be86891cd6)
 - Bug 1168179 - Mark nsPresContext::mMedium as MOZ_UNSAFE_REF. r=dbaron (2312071a0e)
 - Bug 1167402 - Mark nsPresContext::mLinkHandler as MOZ_NON_OWNING_REF. r=dbaron (f6276a7e8f)
 - Bug 1167406 - Mark nsRootPresContext::RunWillPaintObservers::mPresContext as MOZ_NON_OWNING_REF. r=dbaron (956aac5b52)
 - Bug 1228934 - Remove style, weight, and stretch parameters from nsFont constructor. r=jdaggett (2c0b39d5bf)
 - Bug 1215484 - make SVG in an image context ignore author colours to match how we treat raster images, and in a non-image context respect them to match html. f=dao, r=roc (b68056bfc0)
 - Bug 1230466. Make sure to update our scrollbar styles when a <body> is removed from the DOM, since we might now need to propagate from some other element. r=roc (165ae94a09) (30ff84134a)
- import changes from `dev' branch of rmottola/Arctic-Fox:
 - Bug 1162211 Use sqlite private cache mode in Cache API. r=ehsan (7d91c65569)
 - Bug 1220308 Cache API should teardown DOM objects when Worker hits Terminating status. r=baku (a50fd37df1)
 - Bug 1144214 - Fix DeleteOrphanedBodyAction so that it doesn't orphan cache files if the action is canceled; r=bkelly (df310a4915)
 - Bug 1243849 - Restore support for accessing the Cache API from app://URLs and also for storing requests/responses with app:// URLs within it; r=bkelly (07144da733)
 - Bug 1199434 - Fire an event when the print engine encounters an error. r=smaug (e714d1f979)
 - Bug 1230092. Make nsIDOMCustomEvent no longer inherit from nsIDOMEvent, so that CustomEvent doesn't end up with multiple inheritance from nsIDOMEvent. r=smaug (cd8e1b5ff5)
 - Bug 1177927: Use nsFrameList::GetLength() instead of manual iteration to count pages in nsPrintEngine. r=tn (ddcdde1201)
 - Bug 1177927: Use nsFrameList::GetLength() instead of manual iteration to count pages in nsPrintEngine. r=tn (6b8944ab43)
 - Bug 1196896 - add CSSLexer.performEOFFixup. r=heycam, r=bz (c5159fc644)
 - Bug 1153378 - Move local variable in behind #ifndef MOZILLA_XPCOMRT_API. r=jesup (8e5a9c1c48)
 - Bug 1227396: P1. Remove TimestampedMediaByteRange object. r=cpearce (1fae1c62c5)
 - Bug 1201404 - Implement minimal gtests to exercise the MPEG4 parser - r=rillian (2a47ebc9e4)
 - Bug 1187067 - Added gtests using the bug's test file, running simple checks and many parsing runs to catch parser crashes. r=rillian (71027a9572)
 - Bug 1138992: P2. Add gtest. r=kentuckyfriedtakahe (672e0975a1)
 - Bug 1200326 - P 1 - Moved test case contents from test source into separate file - r=rillian (e3cdcdd121)
 - Bug 1200326 - part 2 - Parse subsets of the input stream - r=rillian (c72577319e)
 - Bug 1200326 - p3 - Test case filenames are now in a list, to allow adding more tests - r=rillian (e8a21b4842)
 - Bug 1200326 - p4 - Added test case from bug 1200326, with more checks - r=rillian (8befb8260f)
 - Bug 1204580 - p1: Added test case files. r=rillian (6573cf686d)
 - Bug 1181213 - Added Added mp4 test case to libstagefright gtest - r=rillian (1278f9dc75)
 - Bug 1181719 - p1: Added mp4 test case to libstagefright gtest - r=rillian (7ea78da4d9)
 - Bug 1181223 - p1: Added mp4 test case to libstagefright gtest - r=rillian (14f0b6c719)
 - Bug 1156505 - p1: Added test case file from bug. r=rillian (9d188b3c6a)
 - Bug 1181220 - p1: Added mp4 test case to libstagefright gtest - r=rillian (b98029cb8e)
 - Bug 1181215 - p1: Added mp4 test case to libstagefright gtest - r=rillian (2c20d374b7)
 - Bug 1185230 - p1: Added mp4 test case to libstagefright gtest - r=rillian (e848ebec16)
 - Bug 1216748 - p1. Added test case with different 'covr' sizes - r=rillian (1c0097dc85)
 - Bug 1224019 - Disable Stagefright subset gtests - r=jya, rs=botond (5ee3e6319c)
 - Bug 1227396: P2. Rename some MediaByteRange methods. r=cpearce (3d14aeb56b)
 - Bug 1227396: P3. Add IntervalSet::LastInterval method. r=gerald (96b8503a26)
 - Bug 1227396: P4. Add IntervalSet::Clear method. r=gerald (460ff0cd8f)
 - Bug 1227396: P5. Make Interval::Span ignore empty interval. r=gerald (ba16de0a91)
 - Bug 1227396: P6. Replace MediaByteBuffer with Interval<int64_t>. r=cpearce (eed5d5ca5c)
 - Bug 1227396: P7. Replace nsTArray<MediaByteRange> with dedicated MediaByteRangeSet object. r=cpearce (ea59b05aea)
 - Bug 1188150 - ADTSContainerParser gtest. r=jya (6a4a061647)
 - Bug 1227396: P8. Replace MediaByteRange with Interval<int64_t> typedef. r=cpearce (4d3e657b3b)
 - Bug 1219047 - Call rust mp4parser with logging. r=kinetik (70abf59813)
 - Bug 1220882 - Use LazyLogModule in MP4Metadata. r=kinetik (3443b56be3)
 - Bug 1220885 - Add telemetry probe for rust mp4parse success. r=kinetik p=ally (c012bd11bf)
 - Bug 1174356 - Add missing MediaData include. r=jya (bfe6182cfe)
 - Bug 1227396: P9. Remove unnecessary monitor. r=cpearce (4f156658c4)
 - Bug 1227396: P10: Remove stray function definition. r=cpearce (4c1641560c)
 - Bug 1227396: P11. Add IntervalSet::operator- operand. r=gerald (b56ceb52f4)
 - Bug 1227396: P12. Use MediaByteRangeSet capabilities to filter already processed data. r=cpearce (098d8852d9)
 - Bug 1227396: P13. Refactor how MP4 buffered range is calculated. r=cpearce (66711bd76f)
 - Bug 1227396: P14. Reduce memory usage of sample index for audio tracks. r=cpearce (e1c36bd791)
 - Bug 1197007: Turn off optimization for GMPLoaderImpl::Load. r=cpearce (5df0a365c7)
 - Bug 1208892 - Replace the uses of memset to clean up data in GMPLoader::Load with an inline memset; r=cpearce (ce4f3a3a64)
 - Bug 1187031: Move back to using USER_LOCKDOWN for the GMP sandbox policy on Windows. r=aklotz (53c39be48d)
 - Bug 1214018 - p1: Using vector to pass machine id - r=cpearce (19782ec5b3)
 - Bug 1214018 - p2: Import machine_id_mac.cc from Chromium repo - r=cpearce (000d4734ab)
 - Bug 1214018 - p3: Modify machine_id_mac for FF build - r=cpearce (41818ddc72)
 - Bug 1214018 - p4: Use machine_id_mac in GMPLoader - r=cpearce (4af56e5a6e)
 - Bug 1220326 - Wipe stack after Mac node id generation. r=jrmuizel (8c94ddab25)
 - Bug 1181718 - Fallible allocation of blank audio data - r=jya (7867407417)
 - Bug 1229963 - use UniquePtr<T[]> instead of nsAutoArrayPtr<T> in dom/media/; r=cpearce (796241f002)
 - Bug 1229965 - Use MakeUniqueFallible in blank decoder - r=jya (bac70f5c80)
 - Bug 1139256 - remove the assertion in AudioStream::GetPositionInFramesUnlocked(). See bug 1139256 comment 4 for the detail. r=kinetik. (6e386c7b00)
 - missing bits (1dc7b00da3)
 - Bug 1185115: P2. replace all stagefright::Vector with nsTArray. r=kentuckyfriedtakahe (de4e57b4cd)
 - Bug 1181223 - p2: Handle wrong saio/saiz size instead of assuming it is correct - r=rillian (59f5afa21f)
 - Bug 1138992: P1. Ignore ctts version if we have 0 samples in the table. r=kentuckyfriedtakahe (efb86ce02d)
 - Bug 1216845 - Check fallible allocations - r=rillian (fac4210e2a)
 - Bug 1229615 - Compare track counts between rust and stagefright. r=rillian (1b7ee2e4a8)
 - Bug 1219475 - Fix a comparison warning. r=gerald (2efe7f952d)
 - Bug 1181719 - p2: Check numBitsLeft before each getBits - r=rillian (f7bd7039ed)
 - Bug 1187067 - Null-check mLastTrack before dereferencing it - r=rillian (e2d99073ff)
 - Bug 1181220 - p2: Check if MIME types are valid - r=rillian (c1d1254f6d)
 - Bug 1185230 - p2: Store MPEG4Source::mTimescale as uint32_t - r=rillian (21d124ab25)
 - Bug 1207909 - p1: Fixed ALOGV statement - r=jya (0aef385b41)
 - Bug 1207909 - p2: Fixed a warning (uninitialized 'err') and typo - r=jya (a9c157feda)
 - partial remove of hack (59ca36fbd4)
 - Bug 1156505 - p2: Null-check sampleTable before use. r=rillian (ab18d1d939)
 - Bug 1181215 - p2: Better track verification - r=rillian (d61d5914aa)
 - Bug 1210319 - p1. Removed unused code - r=rillian (4c0b33fc59)
 - Bug 1210319 - p2. Minor intf clean-up, RIP trex - r=rillian (27aaf6ae80)
 - Bug 1229134: Check that memory allocation actually succeeded. r=gerald (b6587bc900)
 - Bug 1209388: [mp3] Remove AppleMP3Reader. r=kentuckyfriedtakahe (e81f265901)
 - Bug 1198576 - Remove MediaCodecReader. r=bwu (e867950ff4)
 - Bug 1191833: P1. Properly check webm mimetype against codec type. r=cpearce (9b27b8064a)
 - Bug 1229605: [MSE] Allow webm/audio independently of video. r=kentuckyfriedtakahe (7b79dfaf4c)
 - Bug 1229339: Partial revert of commit c15c9f37f. r=cpearce (90fa115b64) (967126c55b)

Link to comment
Share on other sites

New regular/weekly KM-Goanna release:
https://o.rthost.win/kmeleon/KM76.4.7-Goanna-20230506.7z

Changelog:

Out-of-tree changes:
* update Goanna3 to git a8e11fd667...967126c55b:
- import changes from `dev' branch of rmottola/Arctic-Fox:
 - Bug 1225486 - don't include mozilla/ToString.h in {BasePoint,nsRegion}.h; r=jrmuizel (33ffb885b7)
 - Bug 1069417 - Generalize Matrix4x4 into Matrix4x4Typed<SourceUnits, TargetUnits>. r=Bas (ef50fbb874)
 - Bug 1229202 (part 1) - Remove some unused arguments in nsPrintEngine's functions. r=mattwoodrow. (7368283f53)
 - Bug 1229202 (part 2) - Remove gfxQuartzSurface::GetCGContextWithClip, which is unused. r=mattwoodrow. (611ebc211e)
 - Bug 1229202 (part 3) - Make gfxContextAutoDisableSubpixelAntialiasing take a DrawTarget instead of a gfxContext. r=mattwoodrow. (eac64c2002)
 - Bug 1229202 (part 4) - Remove an unused gfxContextAutoSaveRestore. r=mattwoodrow. (050fc5796d)
 - Bug 1229202 (part 5) - Remove an unneeded gfxContextAutoSaveRestore. r=mattwoodrow. (966558456b)
 - Bug 1229202 (part 6) - Remove two nasty matrix reinterpret_casts. r=mattwoodrow. (c27b247af7)
 - Bug 1229202 (part 7) - Pass a DrawTarget to gfxXlibNativeRenderer::DrawDirect(). r=mattwoodrow. (8356148bdb)
 - Bug 1187134 (part 1) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (f7adf5b45f)
 - Bug 1187134 (part 2) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (4af6bd04f0)
 - Bug 1187134 (part 3) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (ad822eefa9)
 - Bug 1187134 (part 4) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (b49e0625b4)
 - Bug 1187134 (part 5) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (cb88e0d11f)
 - Bug 1181040 - Always disable sccache when doing PGO builds. r=gps (d5b19682ee)
 - Bug 1229613 - Properly disable sccache on PGO builds. r=mshal (930caf31b3)
 - Bug 1164921 - part 3 - make more things depend on CONFIG[MOZ_ANDROID_CXX_STL]; r=glandium (e437ffb734)
 - Bug 1207288. Ask ANGLE for the correct output version. r=jgilbert (43ab163d70)
 - Bug 1219890. Construct context arguments on the stack. r=jgilbert (6bc3b04360)
 - Bug 1219890. Use ES3 when appropriate. r=jgilbert (9cd5e81934)
 - missing bit of Bug 1200595 - Consolidate the TextureClient's destruction logic. (96d02c0a21)
 - Bug 1219890. Make assignment operator and copy constructor default. r=jgilbert (27e886223f)
 - Bug 1228182 - Use division directly for generating double in XorShift128PlusRNG. r=Waldo (02b90bfcab)
 - Bug 322529 part 1 - Use XorShift128PlusRNG for Math.random(). r=jwalden (bc70756ff6)
 - Bug 322529 part 2 - Add xor64 and add64 to macro-assemblers. r=arai (ba54b70a25)
 - Bug 322529 part 3 - Fix LRandom JIT code to use the new algorithm. r=arai,jwalden (8ba7676a56)
 - Bug 322529 part 4 - Fix setRNGState shell function and math-random.js jit-test. r=arai (462a4779f9)
 - Bug 322529 part 5 - Give Windows ExecutableAllocator its own XorShift128+ RNG. r=jwalden (0f96f35586)
 - fix warnings (e564ce4515)
 - Bug 1197282 - Include <atomic> in VideoDecoder.h. r=cpearce (aeb12e6082)
 - Bug 1195939 - Flush decode queue on Reset() in gmp-clearkey - r=cpearce (4dcbde99e0)
 - Bug 1186406 - Copy input to ClearKey's decoder, so we can return its containing shmem earlier. r=gerald (d8764fa545)
 - Bug 1228461 - Don't assert we must have keys for keyIds we've seen in ~ClearKeySession(). r=gerald (4ddcbe699f)
 - Bug 1228461 - Implement keyids initData type for ClearKey. r=gerald (09213c5e5f)
 - Bug 1230026 - Support 'webm' initDataType format for MP4 ClearKey initData. r=gerald (b64a9e6a21)
 - Bug 1173631 - [EME] Implement async shutdown in clearkey GMP. r=cpearce (366ec9235c)
 - Bug 1181436 - Use 'gmp-api/' prefix consistently in includes in gmp-clearkey. r=gerald (eb4f4344c0)
 - Bug 1185388 - Limit the number of cores used by WMF in ClearKey CDM -r=cpearce (9014cf6c29)
 - Bug 1214469 - Ensure gmp-clearkey accounts for mNumInputTasks when flushing. r=gerald (5c2e691b64)
 - Bug 1226430 - Remove alg from ClearKey license parser. r=gerald (43bf12a3b6)
 - Bug 1157728: Removed StackArena::Init() and call to it as it is now useless. r=dholbert (fee41513de)
 - Bug 1161392 - Enlarge touch area for AccessibleCaret. r=roc (15e9b18206)
 - Bug 1207934 - Reset mImaginaryCaretRect if it is out of scrollport. r=roc (3d00572dd8)
 - Bug 1225699 part 1 - Add EffectSet class; r=smaug (c4e255a722)
 - Bug 1225699 part 2 - Add Add/RemoveEffect to EffectSet; r=smaug (70d1e3ada2)
 - Bug 1225699 part 3 - Register and unregister effects with elements; r=smaug, r=heycam (7d6478b017)
 - Bug 1225699 part 4 - Add iterator to EffectSet; r=heycam (cf28cff0f4)
 - Bug 1225699 part 5 - Use EffectSet in Element::GetAnimations; r=heycam (0fdb687623)
 - Bug 1225699 part 6 - Use strong refs to store effects on their target elements; r=smaug (078c58732c)
 - Bug 1225699 part 7 - Keep effect properties when the ownerDocument of the element changes; r=smaug (ddd3ab54b1)
 - Bug 1226118 part 1 - Add EffectSet::GetEffectSet(const nsIFrame*); r=dholbert (407533395c)
 - Bug 1226118 part 2 - Use EffectSet in nsLayoutUtils animation functions; r=dholbert (808525d54b)
 - Bug 1226118 part 3 - Use EffectSet in CommonAnimationManager::ClearIsRunningOnCompositor; r=hiro, r=dholbert (e5020bdc23)
 - Bug 1226118 part 4 - Use EffectSet in ActiveLayerManager's animated-scale checks; r=dholbert (ef725a9753)
 - Bug 1226118 part 5 - Move LogAsyncAnimationFailure to AnimationUtils; r=dholbert (aa2104cd55)
 - Bug 1226118 part 6 - Remove no longer used LayerAnimationRecord/Info code from AnimationCommon; r=dholbert (6355d4132e)
 - Bug 1226118 part 7 - Rename and rework KeyframeEffectReadOnly::CanAnimatePropertyOnCompositor to ShouldBlockCompositorAnimations; r=hiro (5ae5113f87)
 - Bug 1226118 part 8 - Add EffectCompositor::GetAnimationsForCompositor that uses the EffectSet rather than AnimationCollection; r=dholbert (07067af8b8)
 - Bug 1226118 part 9 - Use EffectCompositor::GetAnimationsForCompositor in nsDisplayList; r=dholbert (7b857c5030)
 - Bug 1226118 part 10 - Use EffectCompositor::GetAnimationsForCompositor in nsLayoutUtils; r=dholbert (af9221073b)
 - Bug 1226118 part 11 - Remove CommonAnimationManager::GetAnimationsForCompositor; r=dholbert (02865b2413)
 - Bug 1226118 part 12a - Make RestyleManager::GetMaxAnimationGenerationForFrame used frame-based GetAnimationCollection; r=dholbert (34644baa17)
 - Bug 1226118 part 12b - Rename CommonAnimationManager::GetAnimations to GetAnimationCollection; r=dholbert (fc391019a2)
 - Bug 1226118 part 13 - Move the GetAnimationCollection definitions side-by-side; r=dholbert (8828457ba1)
 - Bug 1226118 part 14 - Rewrite GetAnimationCollection(nsIFrame*) in terms of the existing GetAnimationCollection; r=dholbert (d7256f9a5b)
 - Bug 1226118 part 15 - Remove no-longer-necessary delays from test_running_on_compositor.html; r=hiro (bd70ec1d14)
 - Bug 1183786 - Part 1: Refactor timer setup code into a helper function. r=dholbert (b383718880)
 - Bug 1183786 - Part 2: Delay updating after prefs changed if detached. r=tn r=dholbert (90e1564a20)
 - Bug 1183786 - Part 3: Make nsPresContext helper-function return already_AddRefed instead of bool+outparam. r=tn (30acf78f3d)
 - Bug 1183786 - Part 4: Drop unnecessary '!!' boolification. r=tn (66c94926a6)
 - Bug 1168180 - Mark nsPresContext::mShell as MOZ_NON_OWNING_REF. r=dbaron (be86891cd6)
 - Bug 1168179 - Mark nsPresContext::mMedium as MOZ_UNSAFE_REF. r=dbaron (2312071a0e)
 - Bug 1167402 - Mark nsPresContext::mLinkHandler as MOZ_NON_OWNING_REF. r=dbaron (f6276a7e8f)
 - Bug 1167406 - Mark nsRootPresContext::RunWillPaintObservers::mPresContext as MOZ_NON_OWNING_REF. r=dbaron (956aac5b52)
 - Bug 1228934 - Remove style, weight, and stretch parameters from nsFont constructor. r=jdaggett (2c0b39d5bf)
 - Bug 1215484 - make SVG in an image context ignore author colours to match how we treat raster images, and in a non-image context respect them to match html. f=dao, r=roc (b68056bfc0)
 - Bug 1230466. Make sure to update our scrollbar styles when a <body> is removed from the DOM, since we might now need to propagate from some other element. r=roc (165ae94a09) (30ff84134a)
- import changes from `dev' branch of rmottola/Arctic-Fox:
 - Bug 1162211 Use sqlite private cache mode in Cache API. r=ehsan (7d91c65569)
 - Bug 1220308 Cache API should teardown DOM objects when Worker hits Terminating status. r=baku (a50fd37df1)
 - Bug 1144214 - Fix DeleteOrphanedBodyAction so that it doesn't orphan cache files if the action is canceled; r=bkelly (df310a4915)
 - Bug 1243849 - Restore support for accessing the Cache API from app://URLs and also for storing requests/responses with app:// URLs within it; r=bkelly (07144da733)
 - Bug 1199434 - Fire an event when the print engine encounters an error. r=smaug (e714d1f979)
 - Bug 1230092. Make nsIDOMCustomEvent no longer inherit from nsIDOMEvent, so that CustomEvent doesn't end up with multiple inheritance from nsIDOMEvent. r=smaug (cd8e1b5ff5)
 - Bug 1177927: Use nsFrameList::GetLength() instead of manual iteration to count pages in nsPrintEngine. r=tn (ddcdde1201)
 - Bug 1177927: Use nsFrameList::GetLength() instead of manual iteration to count pages in nsPrintEngine. r=tn (6b8944ab43)
 - Bug 1196896 - add CSSLexer.performEOFFixup. r=heycam, r=bz (c5159fc644)
 - Bug 1153378 - Move local variable in behind #ifndef MOZILLA_XPCOMRT_API. r=jesup (8e5a9c1c48)
 - Bug 1227396: P1. Remove TimestampedMediaByteRange object. r=cpearce (1fae1c62c5)
 - Bug 1201404 - Implement minimal gtests to exercise the MPEG4 parser - r=rillian (2a47ebc9e4)
 - Bug 1187067 - Added gtests using the bug's test file, running simple checks and many parsing runs to catch parser crashes. r=rillian (71027a9572)
 - Bug 1138992: P2. Add gtest. r=kentuckyfriedtakahe (672e0975a1)
 - Bug 1200326 - P 1 - Moved test case contents from test source into separate file - r=rillian (e3cdcdd121)
 - Bug 1200326 - part 2 - Parse subsets of the input stream - r=rillian (c72577319e)
 - Bug 1200326 - p3 - Test case filenames are now in a list, to allow adding more tests - r=rillian (e8a21b4842)
 - Bug 1200326 - p4 - Added test case from bug 1200326, with more checks - r=rillian (8befb8260f)
 - Bug 1204580 - p1: Added test case files. r=rillian (6573cf686d)
 - Bug 1181213 - Added Added mp4 test case to libstagefright gtest - r=rillian (1278f9dc75)
 - Bug 1181719 - p1: Added mp4 test case to libstagefright gtest - r=rillian (7ea78da4d9)
 - Bug 1181223 - p1: Added mp4 test case to libstagefright gtest - r=rillian (14f0b6c719)
 - Bug 1156505 - p1: Added test case file from bug. r=rillian (9d188b3c6a)
 - Bug 1181220 - p1: Added mp4 test case to libstagefright gtest - r=rillian (b98029cb8e)
 - Bug 1181215 - p1: Added mp4 test case to libstagefright gtest - r=rillian (2c20d374b7)
 - Bug 1185230 - p1: Added mp4 test case to libstagefright gtest - r=rillian (e848ebec16)
 - Bug 1216748 - p1. Added test case with different 'covr' sizes - r=rillian (1c0097dc85)
 - Bug 1224019 - Disable Stagefright subset gtests - r=jya, rs=botond (5ee3e6319c)
 - Bug 1227396: P2. Rename some MediaByteRange methods. r=cpearce (3d14aeb56b)
 - Bug 1227396: P3. Add IntervalSet::LastInterval method. r=gerald (96b8503a26)
 - Bug 1227396: P4. Add IntervalSet::Clear method. r=gerald (460ff0cd8f)
 - Bug 1227396: P5. Make Interval::Span ignore empty interval. r=gerald (ba16de0a91)
 - Bug 1227396: P6. Replace MediaByteBuffer with Interval<int64_t>. r=cpearce (eed5d5ca5c)
 - Bug 1227396: P7. Replace nsTArray<MediaByteRange> with dedicated MediaByteRangeSet object. r=cpearce (ea59b05aea)
 - Bug 1188150 - ADTSContainerParser gtest. r=jya (6a4a061647)
 - Bug 1227396: P8. Replace MediaByteRange with Interval<int64_t> typedef. r=cpearce (4d3e657b3b)
 - Bug 1219047 - Call rust mp4parser with logging. r=kinetik (70abf59813)
 - Bug 1220882 - Use LazyLogModule in MP4Metadata. r=kinetik (3443b56be3)
 - Bug 1220885 - Add telemetry probe for rust mp4parse success. r=kinetik p=ally (c012bd11bf)
 - Bug 1174356 - Add missing MediaData include. r=jya (bfe6182cfe)
 - Bug 1227396: P9. Remove unnecessary monitor. r=cpearce (4f156658c4)
 - Bug 1227396: P10: Remove stray function definition. r=cpearce (4c1641560c)
 - Bug 1227396: P11. Add IntervalSet::operator- operand. r=gerald (b56ceb52f4)
 - Bug 1227396: P12. Use MediaByteRangeSet capabilities to filter already processed data. r=cpearce (098d8852d9)
 - Bug 1227396: P13. Refactor how MP4 buffered range is calculated. r=cpearce (66711bd76f)
 - Bug 1227396: P14. Reduce memory usage of sample index for audio tracks. r=cpearce (e1c36bd791)
 - Bug 1197007: Turn off optimization for GMPLoaderImpl::Load. r=cpearce (5df0a365c7)
 - Bug 1208892 - Replace the uses of memset to clean up data in GMPLoader::Load with an inline memset; r=cpearce (ce4f3a3a64)
 - Bug 1187031: Move back to using USER_LOCKDOWN for the GMP sandbox policy on Windows. r=aklotz (53c39be48d)
 - Bug 1214018 - p1: Using vector to pass machine id - r=cpearce (19782ec5b3)
 - Bug 1214018 - p2: Import machine_id_mac.cc from Chromium repo - r=cpearce (000d4734ab)
 - Bug 1214018 - p3: Modify machine_id_mac for FF build - r=cpearce (41818ddc72)
 - Bug 1214018 - p4: Use machine_id_mac in GMPLoader - r=cpearce (4af56e5a6e)
 - Bug 1220326 - Wipe stack after Mac node id generation. r=jrmuizel (8c94ddab25)
 - Bug 1181718 - Fallible allocation of blank audio data - r=jya (7867407417)
 - Bug 1229963 - use UniquePtr<T[]> instead of nsAutoArrayPtr<T> in dom/media/; r=cpearce (796241f002)
 - Bug 1229965 - Use MakeUniqueFallible in blank decoder - r=jya (bac70f5c80)
 - Bug 1139256 - remove the assertion in AudioStream::GetPositionInFramesUnlocked(). See bug 1139256 comment 4 for the detail. r=kinetik. (6e386c7b00)
 - missing bits (1dc7b00da3)
 - Bug 1185115: P2. replace all stagefright::Vector with nsTArray. r=kentuckyfriedtakahe (de4e57b4cd)
 - Bug 1181223 - p2: Handle wrong saio/saiz size instead of assuming it is correct - r=rillian (59f5afa21f)
 - Bug 1138992: P1. Ignore ctts version if we have 0 samples in the table. r=kentuckyfriedtakahe (efb86ce02d)
 - Bug 1216845 - Check fallible allocations - r=rillian (fac4210e2a)
 - Bug 1229615 - Compare track counts between rust and stagefright. r=rillian (1b7ee2e4a8)
 - Bug 1219475 - Fix a comparison warning. r=gerald (2efe7f952d)
 - Bug 1181719 - p2: Check numBitsLeft before each getBits - r=rillian (f7bd7039ed)
 - Bug 1187067 - Null-check mLastTrack before dereferencing it - r=rillian (e2d99073ff)
 - Bug 1181220 - p2: Check if MIME types are valid - r=rillian (c1d1254f6d)
 - Bug 1185230 - p2: Store MPEG4Source::mTimescale as uint32_t - r=rillian (21d124ab25)
 - Bug 1207909 - p1: Fixed ALOGV statement - r=jya (0aef385b41)
 - Bug 1207909 - p2: Fixed a warning (uninitialized 'err') and typo - r=jya (a9c157feda)
 - partial remove of hack (59ca36fbd4)
 - Bug 1156505 - p2: Null-check sampleTable before use. r=rillian (ab18d1d939)
 - Bug 1181215 - p2: Better track verification - r=rillian (d61d5914aa)
 - Bug 1210319 - p1. Removed unused code - r=rillian (4c0b33fc59)
 - Bug 1210319 - p2. Minor intf clean-up, RIP trex - r=rillian (27aaf6ae80)
 - Bug 1229134: Check that memory allocation actually succeeded. r=gerald (b6587bc900)
 - Bug 1209388: [mp3] Remove AppleMP3Reader. r=kentuckyfriedtakahe (e81f265901)
 - Bug 1198576 - Remove MediaCodecReader. r=bwu (e867950ff4)
 - Bug 1191833: P1. Properly check webm mimetype against codec type. r=cpearce (9b27b8064a)
 - Bug 1229605: [MSE] Allow webm/audio independently of video. r=kentuckyfriedtakahe (7b79dfaf4c)
 - Bug 1229339: Partial revert of commit c15c9f37f. r=cpearce (90fa115b64) (967126c55b)

* Notice: the changelog above may not always applicable to XULRunner code which K-Meleon uses.

A goanna3 source tree that has kmeleon adaption patch applied is available here: https://github.com/roytam1/palemoon27/tree/kmeleon76

Link to comment
Share on other sites

Some more pages can be accessed now, Facebook messager works partly, Reddit comments can be seen, its even possible again to log into Tumblr and view the page (at least to some degree - not being able to press the x button on some popping up dialog elements)

Lets hope some more ECMAScript/CSS features are going to be implemented in the near future, it would benefit UXP a lot :)

Edited by Saphir
Link to comment
Share on other sites

16 minutes ago, Saphir said:

No crash here in New Moon 28

It just seems to be happening in Serpent 55.0 only and only if javascript is on. Probably other sites are affected as well.

Link to comment
Share on other sites

On 5/6/2023 at 10:45 PM, DanR20 said:

Spectrum is coming in again so it continues to get better.

There is a crash with this site using Serpent 55:

http://www.legacy.com/news/celebrity-deaths/notable-deaths?affiliateId=1859

The failure is with mozjs.dll. The last April 15th build was good so it just started. 52.0 is no problem.

it hits a code path (about JSOP_GOTO) that it shouldn't (as it should be handled in IonControlFlow, not in IonBuilder) so it needs more investigations.

maybe hitting this: https://github.com/WaterfoxCo/Waterfox-Classic/commit/6d15d320de43f57fe549b44052941c8a6808f6ce but it is ported correctly, but why JSOP_GOTO goes to elsewhere?

Edited by roytam1
Link to comment
Share on other sites

8 hours ago, roytam1 said:

it hits a code path that it shouldn't (as it should be handled in IonControlFlow, not in IonBuilder) so it needs more investigations.

A temporary workaround: disabling javascript.options.ion stops the crash.

Link to comment
Share on other sites

On 5/6/2023 at 10:45 PM, DanR20 said:

Spectrum is coming in again so it continues to get better.

There is a crash with this site using Serpent 55:

http://www.legacy.com/news/celebrity-deaths/notable-deaths?affiliateId=1859

The failure is with mozjs.dll. The last April 15th build was good so it just started. 52.0 is no problem.

have to follow WaterfoxClassic here and it is workarounded for now.

https://github.com/roytam1/basilisk55/commit/ef905bceeccc41328613c0a831a52e99d5541a9c

Link to comment
Share on other sites

On 4/22/2023 at 6:44 AM, roytam1 said:

New build of Firefox 45ESR:

Test binary:
SSE https://o.rthost.win/gpc/files1.rt/firefox-45.9.34-20230422-50d2e2b43-win32-sse.7z
IA32 https://o.rthost.win/gpc/files1.rt/firefox-45.9.34-20230422-50d2e2b43-win32-ia32.7z

Win64 https://o.rthost.win/gpc/files1.rt/firefox-45.9.34-20230422-50d2e2b43-win64.7z

repo: https://github.com/roytam1/mozilla45esr

Changes since my last build:
- [network][security] add TLS_RSA_WITH_AES_256_GCM_SHA384 and TLS_RSA_WITH_AES_128_GCM_SHA256 support (9f9aa2efc)
- import changes from tenfourfox:
 - #651: M1779993 + backbugs (9197c1505)
 - #651: M1786188 M1791029 (28b4c0882)
 - #651: M1761233 M1687303 M1633019 M1797336 M1799748 M1801102 (fb91afbb4)
 - add MDN script to problematic scripts due to screen blanking after load (2488fabc4)
 - #659: initial support for per-host CSS grid whitelist (c889bc5ce)
 - #659 sidecar: better blocking means for developer.mozilla.org (c51a503ed)
 - #659: tuneups and edgecases (17b23692f) (50d2e2b43)

apple.com can cause my firefox45tff to crash, reported to tenfourfox: https://github.com/classilla/tenfourfox/issues/488#issuecomment-1543542856

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...