Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Unified Diff: Source/bindings/scripts/v8_utilities.py

Issue 329303009: Cleanup [RuntimeEnabled] use in Window (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix typo Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/frame/DOMWindow.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
-
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',
+]
################################################################################
« no previous file with comments | « no previous file | Source/core/frame/DOMWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698