diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-04-25 10:44:10 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-04-26 13:04:27 +0900 |
commit | 0ff64bdc59e75c4fa16927db5cc8797bf60f9a36 (patch) | |
tree | d4312e064b4a99df6b8b08ec6081f642f2a8ea0f /components/style/counter_style/update_predefined.py | |
parent | 11469218661fe3076b255eba35c2b0736dcce500 (diff) | |
download | servo-0ff64bdc59e75c4fa16927db5cc8797bf60f9a36.tar.gz servo-0ff64bdc59e75c4fa16927db5cc8797bf60f9a36.zip |
Allow 'decimal' and 'none' in `<counter-style-name>`
… other than in `@counter-style`.
Diffstat (limited to 'components/style/counter_style/update_predefined.py')
-rwxr-xr-x | components/style/counter_style/update_predefined.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/style/counter_style/update_predefined.py b/components/style/counter_style/update_predefined.py index 9e64545b593..3e5be33e448 100755 --- a/components/style/counter_style/update_predefined.py +++ b/components/style/counter_style/update_predefined.py @@ -25,9 +25,6 @@ def main(filename): predefined! { """) for name in names: - # FIXME https://github.com/w3c/csswg-drafts/issues/1285 - if name == 'decimal': - continue f.write(' "%s",\n' % name) f.write('}\n') |