diff options
author | athenian200 <athenian200@outlook.com> | 2020-10-27 20:37:50 -0500 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-11-18 10:51:45 +0000 |
commit | 770cb9a4b98947b5508278aeb7532d42fd973cae (patch) | |
tree | 5531ad9c96c0b6877826b009e683262d7006671f /layout/style/test | |
parent | 90309c01a811c7e05baf6d95a2fde2bdd4cdeaf5 (diff) | |
download | UXP-770cb9a4b98947b5508278aeb7532d42fd973cae.tar UXP-770cb9a4b98947b5508278aeb7532d42fd973cae.tar.gz UXP-770cb9a4b98947b5508278aeb7532d42fd973cae.tar.lz UXP-770cb9a4b98947b5508278aeb7532d42fd973cae.tar.xz UXP-770cb9a4b98947b5508278aeb7532d42fd973cae.zip |
Issue #1673 - Part 4: Unprefix -moz-tab-size.
While we do fail a couple of tests, the other mainstream browsers also fail them and I think our implementation of tab-size is good enough to be unprefixed at this point. Having this patch also makes testing easier.
Diffstat (limited to 'layout/style/test')
-rw-r--r-- | layout/style/test/property_database.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/layout/style/test/property_database.js b/layout/style/test/property_database.js index 8624e17dd..6b1ef5602 100644 --- a/layout/style/test/property_database.js +++ b/layout/style/test/property_database.js @@ -2028,8 +2028,8 @@ var gCSSProperties = { other_values: [ "ignore" ], invalid_values: [] }, - "-moz-tab-size": { - domProp: "MozTabSize", + "tab-size": { + domProp: "TabSize", inherited: true, type: CSS_TYPE_LONGHAND, initial_values: [ "8" ], @@ -2038,6 +2038,13 @@ var gCSSProperties = { invalid_values: [ "9%", "calc(9% + 1px)", "calc(1 + 1em)", "-1", "-808", "auto" ] }, + "-moz-tab-size": { + domProp: "MozTabSize", + inherited: true, + type: CSS_TYPE_SHORTHAND_AND_LONGHAND + alias_for: "tab-size", + subproperties: [ "tab-size" ] + }, "-moz-text-size-adjust": { domProp: "MozTextSizeAdjust", inherited: true, |