summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Issue #1442 - WIP: Response.body handling.fetchstreams-workMoonchild2020-11-12
| | | | | | | | | | This doesn't build due to unknown code state at Mozilla. The BZ bug landed hg commit has typoes in it so can't have been what landed because it wouldn't be compile-able. hg history lists a backup but no re-land on the JS part as well that doesn't make sense. On top, further work apparently involved 100 refactoring commits to come to Mozilla's final state. I'm signing off here.
* Issue #1442 - Part 10: Stream shutdown handling.Moonchild2020-11-06
|
* Issue #1442 - Part 9: Fetch implementation of streams.Moonchild2020-11-06
| | | | +worker-friendly pref checking for the DOM API.
* Issue #1442 - Part 8: Implement DOM Response().body as ReadableStream.Moonchild2020-11-05
|
* Issue #1442 - Part 7: binding codegen naming alignment for Streams.Moonchild2020-11-05
|
* Issue #1442 - Part 6: Implement WebIDL bindings for Streams.Moonchild2020-11-05
|
* Merge branch 'master' into fetchstreams-workMoonchild2020-11-05
|\ | | | | | | | | | | | | # Conflicts: # js/src/moz.build Includes re-application of streams addition to moz.build files.
| * Issue #1677 - Part 2: Add build filesMatt A. Tobin2020-11-04
| |
| * Issue #1677 - Part 1: Import new V8 regexp code with Mozilla's header ↵Matt A. Tobin2020-11-04
| | | | | | | | modifications
| * Merge branch 'jsbuild-work'Matt A. Tobin2020-11-04
| |\
| | * Issue #1676 - Part 21: Use js-cxxflags.mozbuild in testing code and js shellMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 20: Split vtune sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 19: Split ctypes sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 18: Move and separate top level sources from vm sources ↵Matt A. Tobin2020-11-04
| | | | | | | | | | | | in js/src/moz.build
| | * Issue #1676 - Part 17: Put remaining source files which have debug code ↵Matt A. Tobin2020-11-04
| | | | | | | | | | | | ifdef'd behind MOZ_DEBUG
| | * Issue #1676 - Part 16: Split WASM sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | | | | | | | | | | | Also puts WasmBinaryIterator.cpp which is debug code ifdef'd behind MOZ_DEBUG
| | * Issue #1676 - Part 15: Split threading sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 14: Split proxy sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 13: Split perf sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 12: Split jit sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 11: Split irregexp sources out of js/src/moz.buildMatt A. Tobin2020-11-04
| | |
| | * Issue #1676 - Part 10: Split gc sources out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 9: Move DIRS down in js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 8: Fix up include for selfhosted.out.hMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 7: Split frontend sources out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 6: Split ds sources out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 5: Split devtools sources out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 4: Split builtin sources out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #80 - De-unify js/srcMatt A. Tobin2020-11-03
| | | | | | | | | | | | | | | | | | | | | Three debug sources are producing link warnings and will be solved as Issue #1676 progresses. This does not include JS Testing sources. Specifically: js/src/gdb or js/src/jsapi-tests
| | * Issue #1676 - Part 3: Split DEFINES out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| | * Issue #1676 - Part 2: Split CFLAGS and CXXFLAGS directives out of ↵Matt A. Tobin2020-11-03
| | | | | | | | | | | | js/src/moz.build
| | * Issue #1676 - Part 1: Split MozTesting directives out of js/src/moz.buildMatt A. Tobin2020-11-03
| | |
| * | [devtools] More gracefully (than a crash) handle stack capture failures.Moonchild2020-10-31
| | |
* | | Issue #1442 - Part 5: Create JSAPI ductwork to handle ReadableStream.Moonchild2020-11-04
| | |
* | | Issue #1442 - Part 4: Add Streams API implementation in C++ in SpiderMonkey.Moonchild2020-11-03
| | |
* | | Issue #1442 - Part 3: Add a run-time preference for toggling the streams API.Moonchild2020-10-31
| | | | | | | | | | | | This was entirely way too complicated to toggle a feature.
* | | Revert "Issue #1442 - Part 2: Implement streams API as self-hosted JS."Moonchild2020-10-31
| | | | | | | | | | | | This reverts commit bb35b25ef9f6137d3644690c8c4c72d095fbbfcd.
* | | Issue #1442 - Part 2: Implement streams API as self-hosted JS.Moonchild2020-10-31
| | |
* | | Issue #1442 - Part 1: Change ArrayBufferCopyData self-hosting intrinsic to takeMoonchild2020-10-31
|/ / | | | | | | | | | | a start offset for the destination. This will be needed to manage stream chunks.
* | Merge pull request 'Fix up -moz-tab-size and unprefix it.' (#1674) from ↵Moonchild2020-10-30
|\ \ | |/ |/| | | | | | | athenian200/UXP:tab-size-length into master Reviewed-on: https://repo.palemoon.org/MoonchildProductions/UXP/pulls/1674
| * Issue #1673 - Part 5: Fix brace style and missed -moz-tab-size reference.athenian2002020-10-29
| |
| * Issue #1673 - Part 4: Unprefix -moz-tab-size.athenian2002020-10-28
| | | | | | | | While we do fail a couple of tests, the other mainstream browsers also fail them and I think our implementation of tab-size is good enough to be unprefixed at this point. Having this patch also makes testing easier.
| * Issue #1673 - Part 3: Bring minimum tab advance up to spec.athenian2002020-10-28
| | | | | | | | This provides a clearer rule for the minimum tab advance that brings us to alignment with the spec and both major browsers.
| * Issue #1673 - Part 2: Make tab-size animatable and fix typos.athenian2002020-10-28
| | | | | | | | There were a few typos in the previous patch and this patch also makes tab-size animatable which didn't really require much of a change at all.
| * Issue #1673 - Part 1: Allow tab-size to accept <length>.athenian2002020-10-28
| | | | | | | | Currently -moz-tab-size only accepts <number> values, and both Chrome and Firefox currently support <length> values and have for some time now. So with this you would be able to support sizes in px or em, for instance. This was implemented in Firefox 53 and was trivial to backport.
* | Issue #1656 - Nuke the remaining vim lines in UXPMoonchild2020-10-26
| | | | | | | | Closes #1656
* | Update docs for change of repository host.Moonchild2020-10-23
| | | | | | | | Rename MCP back to MoonchildProductions.
* | Update docs for change of repository host.Moonchild2020-10-23
| |
* | [layout] Re-order rowgroups if reflowing.Moonchild2020-10-23
| | | | | | | | This logic was missing for tfoot. See existing code in second hunk.
* | [layout] Avoid negative availSize.BSizes in paginated table reflow.Moonchild2020-10-23
| |