mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
Issue #1757 - Reinstate "dom.details_element.enabled" preference
The removal of this preference was botched, all other surrounding plumbing changes appear to be working okay. The ability to use prefs to control this stylesheet might be useful in the future, so perhaps this is one of those "if it ain't broke, don't fix it" bugs where leaving well enough alone in the first place would have been the best choice.
This commit is contained in:
parent
be539ad8fc
commit
618fa768c8
15 changed files with 111 additions and 19 deletions
|
|
@ -606,19 +606,19 @@ pref(layout.css.grid.enabled,true) load 1225376.html
|
|||
pref(layout.css.grid.enabled,true) load 1225592.html
|
||||
load 1229437-1.html
|
||||
load 1229437-2.html
|
||||
load details-containing-only-text.html
|
||||
load details-display-none-summary-1.html
|
||||
load details-display-none-summary-2.html
|
||||
load details-display-none-summary-3.html
|
||||
load details-open-overflow-auto.html
|
||||
load details-open-overflow-hidden.html
|
||||
load details-three-columns.html
|
||||
pref(dom.details_element.enabled,true) load details-containing-only-text.html
|
||||
pref(dom.details_element.enabled,true) load details-display-none-summary-1.html
|
||||
pref(dom.details_element.enabled,true) load details-display-none-summary-2.html
|
||||
pref(dom.details_element.enabled,true) load details-display-none-summary-3.html
|
||||
pref(dom.details_element.enabled,true) load details-open-overflow-auto.html
|
||||
pref(dom.details_element.enabled,true) load details-open-overflow-hidden.html
|
||||
pref(dom.details_element.enabled,true) load details-three-columns.html
|
||||
load first-letter-638937-1.html
|
||||
load first-letter-638937-2.html
|
||||
load flex-nested-abspos-1.html
|
||||
pref(dom.meta-viewport.enabled,true) test-pref(font.size.inflation.emPerLine,15) asserts(0-100) load font-inflation-762332.html # bug 762332
|
||||
load outline-on-frameset.xhtml
|
||||
load summary-position-out-of-flow.html
|
||||
pref(dom.details_element.enabled,true) load summary-position-out-of-flow.html
|
||||
load text-overflow-bug666751-1.html
|
||||
load text-overflow-bug666751-2.html
|
||||
load text-overflow-bug670564.xhtml
|
||||
|
|
|
|||
|
|
@ -1891,10 +1891,12 @@ nsContainerFrame::RenumberFrameAndDescendants(int32_t* aOrdinal,
|
|||
}
|
||||
|
||||
// Do not renumber list for summary elements.
|
||||
HTMLSummaryElement* summary =
|
||||
HTMLSummaryElement::FromContent(kid->GetContent());
|
||||
if (summary && summary->IsMainSummary()) {
|
||||
return false;
|
||||
if (HTMLDetailsElement::IsDetailsEnabled()) {
|
||||
HTMLSummaryElement* summary =
|
||||
HTMLSummaryElement::FromContent(kid->GetContent());
|
||||
if (summary && summary->IsMainSummary()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool kidRenumberedABullet = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue