summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| * Issue #1676 - Part 14: Split proxy sources out of js/src/moz.buildMatt A. Tobin2020-11-04-8/+24
| |
| * Issue #1676 - Part 13: Split perf sources out of js/src/moz.buildMatt A. Tobin2020-11-04-13/+30
| |
| * Issue #1676 - Part 12: Split jit sources out of js/src/moz.buildMatt A. Tobin2020-11-04-216/+232
| |
| * Issue #1676 - Part 11: Split irregexp sources out of js/src/moz.buildMatt A. Tobin2020-11-04-8/+24
| |
| * Issue #1676 - Part 10: Split gc sources out of js/src/moz.buildMatt A. Tobin2020-11-03-14/+30
| |
| * Issue #1676 - Part 9: Move DIRS down in js/src/moz.buildMatt A. Tobin2020-11-03-15/+13
| |
| * Issue #1676 - Part 8: Fix up include for selfhosted.out.hMatt A. Tobin2020-11-03-1/+1
| |
| * Issue #1676 - Part 7: Split frontend sources out of js/src/moz.buildMatt A. Tobin2020-11-03-16/+28
| |
| * Issue #1676 - Part 6: Split ds sources out of js/src/moz.buildMatt A. Tobin2020-11-03-2/+18
| |
| * Issue #1676 - Part 5: Split devtools sources out of js/src/moz.buildMatt A. Tobin2020-11-03-7/+26
| |
| * Issue #1676 - Part 4: Split builtin sources out of js/src/moz.buildMatt A. Tobin2020-11-03-59/+78
| |
| * Issue #80 - De-unify js/srcMatt A. Tobin2020-11-03-17/+17
| | | | | | | | | | | | | | 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-36/+37
| |
| * Issue #1676 - Part 2: Split CFLAGS and CXXFLAGS directives out of ↵Matt A. Tobin2020-11-03-34/+45
| | | | | | | | js/src/moz.build
| * Issue #1676 - Part 1: Split MozTesting directives out of js/src/moz.buildMatt A. Tobin2020-11-03-45/+49
| |
* | [devtools] More gracefully (than a crash) handle stack capture failures.Moonchild2020-10-31-1/+3
| |
* | Merge pull request 'Fix up -moz-tab-size and unprefix it.' (#1674) from ↵Moonchild2020-10-30-334/+397
|\ \ | |/ |/| | | | | | | 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-255/+212
| |
| * Issue #1673 - Part 4: Unprefix -moz-tab-size.athenian2002020-10-28-10/+38
| | | | | | | | 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-11/+30
| | | | | | | | 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-10/+7
| | | | | | | | 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-62/+124
| | | | | | | | 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-59/+0
| | | | | | | | Closes #1656
* | Update docs for change of repository host.Moonchild2020-10-23-1/+1
| | | | | | | | Rename MCP back to MoonchildProductions.
* | Update docs for change of repository host.Moonchild2020-10-23-2/+2
| |
* | [layout] Re-order rowgroups if reflowing.Moonchild2020-10-23-2/+14
| | | | | | | | This logic was missing for tfoot. See existing code in second hunk.
* | [layout] Avoid negative availSize.BSizes in paginated table reflow.Moonchild2020-10-23-9/+11
| |
* | Bump platform version for added features.Moonchild2020-10-23-1/+1
| |
* | [netwerk] Make nsIncrementalStreamLoader's GetNumBytesRead threadsafe.Moonchild2020-10-23-10/+14
| | | | | | | | | | | | | | This prevents a potential race and simplifies the code a bit by keeping the bytes read separate instead of using mData, which is modified from another thread from OnDataAvailable. Relaxed atomics are fine for these, since they don't guard any memory.
* | [DOM] When failing to create a channel and an image request, make sure to setMoonchild2020-10-22-1/+9
|/ | | | | | | the image blocking status appropriately. This is the same status as we do for known no-data protocols and ensures we treat these two cases the same.
* [DOM Fetch] Detect broken pipes and propagate that write error to the caller.Moonchild2020-10-21-0/+11
|
* [DOM Fetch] Improve stability of Fetch API.Moonchild2020-10-21-4/+9
|
* Merge branch 'master' of https://github.com/MoonchildProductions/UXPMoonchild2020-10-20-12/+138
|\
| * Merge pull request #1670 from athenian200/caret_colorMoonchild2020-10-20-12/+138
| |\ | | | | | | Implement CSS caret-color
| | * Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵athenian2002020-10-18-8210/+397
| | |\ | | |/ | |/| | | | caret_color
| | * Issue #1668 - Part 2: Visited color and auto support for caret-color property.athenian2002020-10-18-8/+27
| | | | | | | | | | | | Mozilla's original implementation of this failed a couple of tests, but this seems to solve all the problems. Basically, the caret-color wasn't able to be set differently based on whether a link was visited, and the auto value implementation was incomplete. The only test we fail now is the one where you have grey text on a grey background and the caret is supposed to be visible, but I think that may have been removed from the spec. Even if it wasn't, no other browser supports it anyway.
| | * Issue #1668 - Part 1: Implement support for caret-color property.athenian2002020-10-18-11/+118
| | | | | | | | | | | | | | | | | | This CSS property allows input carets (that blinking input cursor you see in text fields), to be given a custom color. This was implemented in Firefox 53, and it was such a minor feature that no one ever missed it, but I don't see any harm in implementing this. https://bugzilla.mozilla.org/show_bug.cgi?id=1063162
* | | Issue #1671 - Unprefix ::-moz-selectionMoonchild2020-10-20-5/+17
|/ / | | | | | | | | | | | | | | This actually keeps both pseudo-elements for now, since the prefixed version is still used internally, but we need the unprefixed version for web compat. Note: while unprefixing a non-spec-compliant pseudo here, it's exactly in line with what other browsers do. Nobody is following the spec here and at least we'll be doing what everyone else is with our unprefixed version.
* | Issue #1643 - Follow-up: Ensure we properly clear our pointers when theMoonchild2020-10-16-9/+24
| | | | | | | | Presentation of a document is destroyed.
* | Issue #1606 - Add support for multi-monitor DPI awareness v2 (W10 1706+)Moonchild2020-10-06-11/+33
| |
* | [devtools] Teach devtools about overflow-wrap: anywhereMoonchild2020-10-03-0/+2
| | | | | | | | Tag #1666
* | Issue #1666 - Implement overflow-wrap: anywhereMoonchild2020-10-03-4/+11
| | | | | | | | | | | | | | This aligns with the current spec regarding overflow-wrap: break-word and overflow-wrap: anywhere in if it affects intrinsic sized due to considering soft-wrap opportunities or not. See CSS Text Module Level 3, Editor’s Draft, 1 October 2020, Section 5.5
* | Issue #1665 - Take overflow-wrap into account when calculating min-content ↵Moonchild2020-10-03-0/+44
| | | | | | | | intrinsic size.
* | Update CONTRIBUTING.mdNew Tobin Paradigm2020-10-02-2/+7
| | | | | | Revise Commit message style and add Follow-up form
* | Merge pull request #1663 from athenian200/opacity_followupMoonchild2020-10-01-7/+7
|\ \ | | | | | | Remove excessive VARIANT_OPACITY statements.
| * | Issue #1647 - Followup: Remove excessive VARIANT_OPACITY statements.athenian2002020-09-30-7/+7
|/ / | | | | | | | | | | | | | | I got very anxious about making sure I included VARIANT_OPACITY in all the places VARIANT_NUMBER was included to make sure it couldn't possibly break unexpectedly, and that led to me accidentally breaking a mechanism that prevented percentages from serializing as numbers in other parts of the code. It was a total accident, and these additions were unnecessary. Basically, the situation is that there was one part of the code where it determines what's allowed for the flex statement (and possibly other statements) by checking whether it got stored as a "number", and basically only disallows percentages if it attempted to store/serialize them as percentages. However, it only got to that part of the code because I accidentally allowed VARIANT_OPACITY as a valid way for certain tokens to parse where it wasn't necessary. If it tries to parse it that way under very specific circumstances... percentages will be marked valid and fed through the system as numbers rather than being rejected and not serialized at all, because the check to disallow percentages there relied on them being stored as percentages. It's a really weird thing to have a problem with in a lot of ways, because if percentages aren't allowed in a field, you would think people wouldn't try to use them there, much less depend on the broken behavior that results from them not parsing as a related value.
* | Issue #1643 - Follow-up: Make sure things aren't changed while iterating.Moonchild2020-09-30-2/+10
| | | | | | | | This fixes some crashing scenarios.
* | Issue #1643 - Follow up: Add a null check for mOwner in ↵Matt A. Tobin2020-09-29-0/+6
| | | | | | | | | | | | | | ResizeObserverNotificationHelper::Unregister A race condition seemed to exist between tab destruction and un-registering a ResizeObserver resulting in a null deref crash. The original reporter in Forum Topic 25311 experienced this on msn.com so that was the functional test reference.
* | Merge pull request #1660 from g4jc/1656Moonchild2020-09-27-1/+1
|\ \ | | | | | | Issue #1656 - Fix broken comment from Part 1
| * | Issue #1656 - Fix broken comment from Part 1Gaming4JC2020-09-26-1/+1
|/ / | | | | | | Removing the vim line unintentionally broke the comment leading to build failure, this restores the comment.