forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1881157 - Restore the old behavior that allows TableBCDataPropert…
…y to be set on table continuations. r=dholbert Bug 1861562 Part 6 [1] made a bold assumption that TableBCDataProperty should only be set on first-in-flow, but apparently a table continuation can call `GetOrCreateTableBCData()` to set the property in the testcase [2]. This patch restores the old behavior that allows TableBCDataProperty to be set on table continuations. [1] https://hg.mozilla.org/mozilla-central/rev/c9c310c769d2 [2] Note: we don't support fragmenting tables in multicol. Table continuations are created in this testcase because the abspos `<dialog>` in the table is fragmented. Differential Revision: https://phabricator.services.mozilla.com/D203707
- Loading branch information
Showing
3 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<style> | ||
#a { | ||
min-height: 1vw; | ||
line-height: 0vw; | ||
} | ||
#b { | ||
scale: 0.67976 1 1; | ||
} | ||
:root { | ||
column-width: 1em; | ||
} | ||
</style> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", () => { | ||
b.appendChild(a) | ||
document.execCommand("fontSize", false, 5) | ||
b.style.setProperty("border-top-style", "dotted") | ||
}) | ||
function func_0() { | ||
b.rules = "cols" | ||
} | ||
</script> | ||
<dialog id="a" open="true">,'/,_J</dialog> | ||
<table id="b"> | ||
<details open="true" ontoggle="func_0()"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters