summaryrefslogtreecommitdiffstats
path: root/layout/base
Commit message (Collapse)AuthorAgeLines
* Issue #1705 - Part 3: Rename ScrollbarStyles to ScrollStyles.Moonchild2021-01-06-51/+51
| | | | | | | | | | | ScrollbarStyles contains values of overflow, (over)scroll-behavior, etc. The only one which is marginally related to scroll _bars_ is overflow, which can be used to hide scrollbar (by making an element not scrollable) or enforce the scrollbar to display. It makes more sense to be called ScrollStyles as it's mainly concerning behavior of scrolling, not scrollbars. Also, with the addition of scrollbar width properties, the current name can be confusing.
* Issue #1705 - Part 1: Rename nsChangeHint_CSSOverflowChange to *ScrollbarChange.Moonchild2021-01-06-6/+6
| | | | Prepare for scrollbar-width which should trigger the same kind of change.
* Issue #1053 - Part 2a: Remove android from /layout (partial)Moonchild2020-12-26-114/+17
| | | | | This removes android code from base, build, forms, generic, inspector, style, printing, tools and xul.
* Issue #1656 - Part 9: Single-line-comment style.Moonchild2020-09-24-1/+0
|
* Issue #1656 - Part 8: Devtools and misc.Moonchild2020-09-24-11/+0
|
* Issue #1656 - Part 6: Clean up the build filesMoonchild2020-09-23-2/+0
|
* Issue #1656 - Part 4: Manual cleanupMoonchild2020-09-23-1/+0
|
* Issue #1656 - Part 3: Nuke more vim config lines in the tree.Moonchild2020-09-23-5/+0
| | | | Another S&R run with some smarter matching.
* Issue #1656 - Part 1: Nuke most vim config lines in the tree.Moonchild2020-09-23-24/+0
| | | | | | Since these are just interpreted comments, there's 0 impact on actual code. This removes all lines that match /* vim: set(.*)tw=80: */ with S&R -- there are a few others scattered around which will be removed manually in a second part.
* Issue #1655: Update MediaQueryList to the current draft spec.Moonchild2020-09-23-23/+3
| | | | | | | This make MediaQueryList inherit from EventTarget and adds MediaQueryListEvent as an interface as well as the onchange() method. This should not affect compatibility with other code; the event object is a MediaQueryListEvent instance, which is recognized as a MediaListQuery instance.
* Issue #1643 - Part 4: Hook up all the plumbing.Moonchild2020-09-16-0/+5
|
* Issue #1641 - Implement CSS flow-root keywordathenian2002020-09-03-3/+39
| | | | This is just a clean port of 1322191 and follow-up 1325970. It really seems to add create a new way to access existing code relating to block formatting and floating elements rather than implementing new functionality, and it is mercifully straightforwards.
* Issue #1619 - Missing Dimension ComputationAndy2020-07-31-0/+10
| | | | | This existed in Firefox before this bug. I don't know if it came from a previous bug or was removed post-fork.
* Issue #1619 - Convert Intrinsic Ratio to FloatAndy2020-07-31-84/+86
| | | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=1547792 Aspect Ratio handling simplified by using floating point integers: - Multiplication of value (or inverse value) to a known side for Scaling - No unequal equal values such as "4/3" vs "8/6" vs "20/15" - Truly "Empty" aspect ratios, even if one dimension is not 0
* Issue #1525 - Kill marquee elementMoonchild2020-06-01-92/+0
| | | | | | * Remove marquee code * Regenerate HTML Elements/parser code for Removal of Marquee. Co-authored-by: Gaming4JC <g4jc@hyperbola.info>
* [printing] Fix build bustage with --disable-printingMoonchild2020-05-21-0/+2
|
* Revert "Merge pull request #1357 from athenian200/form-disabled-issue"athenian2002020-05-20-2/+3
| | | | | This reverts commit ed88b99849156004c04e4a0c87ea9b2360ef19b6, reversing changes made to c4b0715baaffc541670fd1158557aa7e61e521d3.
* Issue #1545 - Fix border-radius on table row groups, rows, column groups, or ↵win7-72020-05-12-2/+9
| | | | | | | | | | columns Before issue #146, border-radius on row groups, rows, column groups, or columns don't apply to the background of each cell, yet the border-radius on the cell itself does. After issue #146, the behaviors changed. In this patch, I tried to revert the behaviors of border-radius on table row groups, rows, column groups, or columns back to what happened before issue #146. Also: Don't override GetBorderRadii in nsBCTableCellFrame.
* Issue #1355 - Fix the nit, remove nsPoint offset in nsFrame.cpp and change ↵win7-72020-05-10-3/+2
| | | | PresShellState member order
* Issue #1355 - Better way to create display items for column backgroundswin7-72020-05-08-18/+36
| | | | | | | | | | | | | | | | | | | | | | Part 1: Remove current table item, as it's never set. Part 2: Get rid of generic table painting code, and handle each class separately. Part 4: Hoist outline skipping into col(group) frame code. Part 5: Skip box-shadow for table column and column groups. Part 6: Store column and column group backgrounds separately, and then append them before the rest of the table contents. Part 7: Pass rects in display list coordinates to AppendBackgroundItemsToTop. Part 8: Create column and column group background display items as part of the cell's BuildDisplayList. Part 9: Used cached values instead of calling nsDisplayListBuilder::ToReferenceFrame when possible, since it can be expensive when the requested frame isn't the builder's current frame. Part 10: Make sure we build display items for table parts where only the normal position is visible, since we may need to create background items for ancestors at that position. Part 11: Create an AutoBuildingDisplayList when we create background items for table columns and column groups, so that we initialize the invalidation state correctly.
* Issue #1355 - Avoid unnecessary work in ↵win7-72020-05-08-10/+27
| | | | | | | | | | nsIFrame::BuildDisplayListForStackingContext() and nsIFrame::BuildDisplayListForChild() and Cleanup DescendIntoChild Bug 1441796 - Part 1: Optimize the (pseudo)-stacking context conditions Bug 1441796 - Part 3: Reuse the results in nsIFrame::BuildDisplayListForStackingContext() for ChildrenHavePerspective(), IsTransformed(), and Combines3DTransformWithAncestors() Bug 1512244 - Part 1: Cleanup DescendIntoChild
* Issue #1355 - Preemptively fix build bustage for 1409114win7-72020-05-08-5/+6
|
* Issue #1355 - Store the dirty rect on the display list builder rather than ↵win7-72020-05-08-25/+26
| | | | | | passing it as a parameter to BuildDisplayList Also fix build bustage for De-unified layout/xul in nsRootBoxFrame.cpp
* Issue #80 - Include nsIContentInlines.h in ↵adeshkp2020-05-01-0/+1
| | | | layout/base/PositionedEventTargeting.cpp
* Issue #80 - De-unify layout/baseMoonchild2020-04-29-15/+42
|
* Bug 1426536 - Remove nsContentUtils::IsContentInsertionPointMatt A. Tobin2020-04-17-4/+4
| | | | Tag #1375
* Bug 1419762 - Return the inline continuation of an IB split when appendingMatt A. Tobin2020-04-17-3/+20
| | | | Tag #1375
* Bug 1419964 - Remove AdjustParentFrameForAfterContentMatt A. Tobin2020-04-17-147/+70
| | | | Tag #1375
* Bug 1415843 - Remove an unneeded call to AdjustAppendParentForAfterContentMatt A. Tobin2020-04-17-46/+0
| | | | Tag #1375
* Bug 1415538 - Remove dead frame construction code (InsertFirstLineFrames)Matt A. Tobin2020-04-17-166/+4
| | | | Tag #1375
* Bug 1415152 - No need for AdjustAppendForAfter, since ::after is handled in ↵Matt A. Tobin2020-04-17-10/+3
| | | | | | FindNextSibling Tag #1375
* Bug 1413619 - Fix insertion point computation when display: contents pseudos ↵Matt A. Tobin2020-04-17-226/+160
| | | | | | are involved. Tag #1375
* Bug 979782 - Implement lazy frame construction for display:contents descendantsMatt A. Tobin2020-04-17-7/+9
| | | | | | | * Fixup FindFrameForContentSibling to don't duplicate work and trigger assertions for display: contents * Enable lazy frame construction for display: contents direct descendants Tag #1375
* Bug 1380749 - Retry AdjustAppendParentForAfterContent in case ↵Matt A. Tobin2020-04-17-9/+23
| | | | | | |parentAfterFrame| was a :first-letter frame that we deleted Tag #1375
* Bug 1416999 - Remove document.registerElementMatt A. Tobin2020-04-17-15/+18
| | | | Tag #1375
* Bug 1411754 - Rename PresShell::DestroyFramesFor to DestroyFramesForAndRestyleMatt A. Tobin2020-04-17-8/+10
| | | | Tag #1375
* Bug 1404789 - Stop reconstructing frames for the whole shadow root each time ↵Matt A. Tobin2020-04-17-0/+20
| | | | | | | | | | | | content is inserted in a shadow tree * Cleanup a bit the ShadowRoot code * Privatize ShadowRoot methods * When the shadow tree distribution changes, post a restyle + reframe * Simplify ShadowRoot::IsPooledNode * Be a bit better at detecting distribution changes Tag #1375
* Bug 1381134 - Ensure we're using the correct frame for the :after/:before ↵Matt A. Tobin2020-04-17-4/+4
| | | | | | references Tag #1375
* Bug 1389743 - Only reconstruct frames synchronously from ContentRemoved when ↵Matt A. Tobin2020-04-17-239/+196
| | | | | | called from frame construction Tag #1375
* Bug 1377978 - Make nsRange use uint32_t to offsetMatt A. Tobin2020-04-17-2/+4
| | | | Tag #1375
* Bug 1377648 - Fix HTMLSummaryElement::IsSummary() on removing the elementMatt A. Tobin2020-04-17-12/+16
| | | | | | | * Use inFlowFrame to check the target frame is summary and its parent is details * Check summary frame instead of summary element on removing the summary Tag #1375
* Bug 1368547 - Remove nsFrameManagerBase::mPlaceholderMap and instead store ↵Matt A. Tobin2020-04-17-121/+15
| | | | | | the placeholder on a frame property on the out-of-flow Tag #1375
* Bug 1368802 - nsFrameIterator::GetPlaceholderFrame should only try to get ↵Matt A. Tobin2020-04-17-11/+9
| | | | | | the placeholder for out-of-flow frames, because in-flow frames never have a placeholder Tag #1375
* Bug 1361086 - Simplify UndisplayedMap::GetListFor/GetOrCreateListFor to take ↵Matt A. Tobin2020-04-17-11/+11
| | | | | | nsIContent* rather than nsIContent** Tag #1375
* Bug 1360157 - Assert that a display: contents child always has a parentMatt A. Tobin2020-04-17-0/+1
| | | | Tag #1375
* Bug 1355351 - Make pseudo-elements return the correct style via getComputedStyleMatt A. Tobin2020-04-17-150/+68
| | | | | | | | | * Add a node property to access the ::before and ::after pseudo-elements * Look for the frame for ::before and ::after pseudos * Clean up pseudo-element props * Simplify nsLayoutUtils callers, and make child iterators notice display: contents pseudos Tag #1375
* Bug 1296516 - Cleanup a bit of code in layout/baseMatt A. Tobin2020-04-17-459/+358
| | | | | | | | * Tidy RestyleManager::ContentStateChanged * Convert UndisplayedMap to a typed hashtable * Cleanup infallible or unchecked nsCSSFrameConstructor methods Tag #1375
* Bug 1330843 - Allow JS to create NAC pseudo-elementsMatt A. Tobin2020-04-17-1/+31
| | | | Tag #1375
* Bug 1346623 - Allow anonymous content created with ↵Matt A. Tobin2020-04-16-4/+19
| | | | | | | | | nsIDocument::InsertAnonymousContent can change from non-native to native AC * Prevent canvas custom content from becoming NAC when reframing the root element * Add an API to get computed style values through an AnonymousContent object Tag #1375
* Bug 1343879 - Be consistent about the parent style context the ↵Matt A. Tobin2020-04-16-9/+15
| | | | | | document-level anonymous content container should get: it should get no parent style context. Tag #1375