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 /devtools | |
parent | a2c26490b4ad94336a7940e691d17f7aef040fa2 (diff) | |
download | UXP-9ffc5e6c924d2fce78b7aad9727c608077b26ff4.tar UXP-9ffc5e6c924d2fce78b7aad9727c608077b26ff4.tar.gz UXP-9ffc5e6c924d2fce78b7aad9727c608077b26ff4.tar.lz UXP-9ffc5e6c924d2fce78b7aad9727c608077b26ff4.tar.xz UXP-9ffc5e6c924d2fce78b7aad9727c608077b26ff4.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 'devtools')
-rw-r--r-- | devtools/shared/css/generated/properties-db.js | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/devtools/shared/css/generated/properties-db.js b/devtools/shared/css/generated/properties-db.js index 01358a033..d149995d9 100644 --- a/devtools/shared/css/generated/properties-db.js +++ b/devtools/shared/css/generated/properties-db.js @@ -1233,7 +1233,7 @@ exports.CSS_PROPERTIES = { "-moz-tab-size": { "isInherited": true, "subproperties": [ - "-moz-tab-size" + "tab-size" ], "supports": [ 7 @@ -3052,7 +3052,7 @@ exports.CSS_PROPERTIES = { "stroke-opacity", "stroke-width", "-x-system-font", - "-moz-tab-size", + "tab-size", "table-layout", "text-align", "text-align-last", @@ -8650,6 +8650,23 @@ exports.CSS_PROPERTIES = { "unset" ] }, + "tab-size": { + "isInherited": true, + "subproperties": [ + "tab-size" + ], + "supports": [ + 6, + 7 + ], + "values": [ + "-moz-calc", + "calc", + "inherit", + "initial", + "unset" + ] + }, "table-layout": { "isInherited": false, "subproperties": [ |