diff options
author | Jonathan Kew <jkew@mozilla.com> | 2023-05-21 23:36:30 +0200 |
---|---|---|
committer | Oriol Brufau <obrufau@igalia.com> | 2023-05-24 18:32:33 +0200 |
commit | f0a178b56a7bccba103c0b96e95e687eb2188b5d (patch) | |
tree | 27c977da09b40a51e5551d4d1a46ca2243ba653f /components/style/properties/data.py | |
parent | 4353d31cb07032d9e71456c3295ccbf9259c2da5 (diff) | |
download | servo-f0a178b56a7bccba103c0b96e95e687eb2188b5d.tar.gz servo-f0a178b56a7bccba103c0b96e95e687eb2188b5d.zip |
style: Un-prefix -moz-tab-size (keeping the prefixed version as an alias for now)
This results in lots of new WPT test passes.
There were also a couple of WPT tests that turned out to be broken;
tab-size-inline-001 and -002 had errors in their reference files such
that they'd never pass anywhere. So those are fixed here.
Depends on D117331
Differential Revision: https://phabricator.services.mozilla.com/D117332
Diffstat (limited to 'components/style/properties/data.py')
-rw-r--r-- | components/style/properties/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/properties/data.py b/components/style/properties/data.py index 8a523ccb66f..8f3c7d35269 100644 --- a/components/style/properties/data.py +++ b/components/style/properties/data.py @@ -759,7 +759,7 @@ def _add_logical_props(data, props): # These are probably Gecko bugs and should be supported per spec. def _remove_common_first_line_and_first_letter_properties(props, engine): if engine == "gecko": - props.remove("-moz-tab-size") + props.remove("tab-size") props.remove("hyphens") props.remove("line-break") props.remove("text-align-last") |