mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Make predefined counter style names ASCII-lowercase.
This commit is contained in:
parent
e7a2a98d8a
commit
82c04113d0
3 changed files with 117 additions and 1 deletions
35
components/style/counter_style/update_predefined.py
Executable file
35
components/style/counter_style/update_predefined.py
Executable file
|
@ -0,0 +1,35 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
import os.path
|
||||
import re
|
||||
import urllib
|
||||
|
||||
|
||||
def main(filename):
|
||||
names = [
|
||||
re.search('>([^>]+)(</dfn>|<a class="self-link")', line).group(1)
|
||||
for line in urllib.urlopen("https://drafts.csswg.org/css-counter-styles/")
|
||||
if 'data-dfn-for="<counter-style-name>"' in line
|
||||
or 'data-dfn-for="<counter-style>"' in line
|
||||
]
|
||||
with open(filename, "wb") as f:
|
||||
f.write("""\
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
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')
|
||||
|
||||
if __name__ == "__main__":
|
||||
main(os.path.join(os.path.dirname(__file__), "predefined.rs"))
|
Loading…
Add table
Add a link
Reference in a new issue