diff options
author | Moonchild <moonchild@palemoon.org> | 2022-12-30 22:37:02 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-12-30 22:37:02 +0000 |
commit | 34ccfbcc0e3e5fa55017e70ddd34b15b3a4fe4ae (patch) | |
tree | e2fb0ab24ff296ab0415bcf90fa1016d9ed097a2 /modules | |
parent | 4a3caaf522d6b5f42e80042424f8b2d88825a528 (diff) | |
download | uxp-34ccfbcc0e3e5fa55017e70ddd34b15b3a4fe4ae.tar.gz |
Issue #2075 - Part 1: Rename offset-* logical properties to inset-*
This adds aliases behind a pref with the old offset-* names
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 60acb84143..1fb227be5f 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2537,6 +2537,10 @@ pref("layout.css.background-blend-mode.enabled", true); // Is support for background-clip:text enabled? pref("layout.css.background-clip-text.enabled", true); +// Is support for the non-standard offset-* logical property aliases enabled? +// These map to their inset-* equivalents. +pref("layout.css.offset-logical-properties.enabled", true); + // Is support for CSS text-combine-upright (tate-chu-yoko) enabled? pref("layout.css.text-combine-upright.enabled", true); // Is support for CSS text-combine-upright: digits 2-4 enabled? |