Chromium Code Reviews| Index: Source/bindings/scripts/v8_utilities.py |
| diff --git a/Source/bindings/scripts/v8_utilities.py b/Source/bindings/scripts/v8_utilities.py |
| index 9f1eb6d1bf6c0737d3e16016e8fe9db84c7cf5e0..c1be08a14017422a1a48f274772168785ae355bb 100644 |
| --- a/Source/bindings/scripts/v8_utilities.py |
| +++ b/Source/bindings/scripts/v8_utilities.py |
| @@ -33,8 +33,6 @@ Extends IdlType and IdlUnion type with |enum_validation_expression| property. |
| Design doc: http://www.chromium.org/developers/design-documents/idl-compiler |
| """ |
| -# FIXME: eliminate this file if possible |
|
Nils Barth (inactive)
2014/06/13 03:19:56
This file is necessary for shared functions, so re
|
| - |
| import re |
| from idl_types import IdlType, IdlUnionType |
| @@ -42,7 +40,18 @@ import idl_types |
| from v8_globals import includes |
| import v8_types |
| -ACRONYMS = ['CSS', 'HTML', 'IME', 'JS', 'SVG', 'URL', 'WOFF', 'XML', 'XSLT'] |
| +ACRONYMS = [ |
| + 'CSSOM', # must come *before* CSS to match full acronym |
| + 'CSS', |
| + 'HTML', |
| + 'IME', |
| + 'JS', |
| + 'SVG', |
| + 'URL', |
| + 'WOFF', |
| + 'XML', |
| + 'XSLT', |
| +] |
| ################################################################################ |