Index: Source/build/scripts/make_qualified_names.py |
diff --git a/Source/build/scripts/make_qualified_names.py b/Source/build/scripts/make_qualified_names.py |
index b907d02ffd4160d4f254ad29cae832f5ae602fa8..cb607b12265e90a9f154f18cd49c3901a1e6b41a 100755 |
--- a/Source/build/scripts/make_qualified_names.py |
+++ b/Source/build/scripts/make_qualified_names.py |
@@ -39,7 +39,7 @@ from in_file import InFile |
def _symbol(entry): |
# FIXME: Remove this special case for the ugly x-webkit-foo attributes. |
- if entry['name'].startswith('x-'): |
+ if entry['name'].startswith('x-webkit-'): |
return entry['name'].replace('-', '')[1:] |
return entry['name'].replace('-', '_') |