diff options
author | athenian200 <athenian200@outlook.com> | 2020-09-03 18:55:28 -0500 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2020-09-03 18:55:28 -0500 |
commit | 6b2c3b61b1c338ddec723482bd2c83427ef2e431 (patch) | |
tree | bd30f18df9a1d98b88a24c5e9482551ec84ff8ec /modules/libpref/init/all.js | |
parent | 0ac50227e22599b62ddfb1e4a889032837925178 (diff) | |
download | UXP-6b2c3b61b1c338ddec723482bd2c83427ef2e431.tar UXP-6b2c3b61b1c338ddec723482bd2c83427ef2e431.tar.gz UXP-6b2c3b61b1c338ddec723482bd2c83427ef2e431.tar.lz UXP-6b2c3b61b1c338ddec723482bd2c83427ef2e431.tar.xz UXP-6b2c3b61b1c338ddec723482bd2c83427ef2e431.zip |
Issue #1641 - Implement CSS flow-root keyword
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.
Diffstat (limited to 'modules/libpref/init/all.js')
-rw-r--r-- | modules/libpref/init/all.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 5eed08f86..f3c660c12 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2606,6 +2606,9 @@ pref("layout.css.grid-template-subgrid-value.enabled", false); // Is support for CSS contain enabled? pref("layout.css.contain.enabled", false); +// Is support for CSS display:flow-root enabled? +pref("layout.css.display-flow-root.enabled", true); + // Is support for CSS display:contents enabled? pref("layout.css.display-contents.enabled", true); |