diff options
author | athenian200 <athenian200@outlook.com> | 2020-10-27 20:37:50 -0500 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2020-10-28 14:17:51 -0500 |
commit | 9ffc5e6c924d2fce78b7aad9727c608077b26ff4 (patch) | |
tree | 1c49face93690476affa058028767af76dfb104f /layout/style/test | |
parent | a2c26490b4ad94336a7940e691d17f7aef040fa2 (diff) | |
download | uxp-9ffc5e6c924d2fce78b7aad9727c608077b26ff4.tar.gz |
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 5182dd89c1..635431e8fb 100644 --- a/layout/style/test/property_database.js +++ b/layout/style/test/property_database.js @@ -2027,8 +2027,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" ], @@ -2037,6 +2037,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, |