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

Unified Diff: lib/dom/scripts/idlparser.py

Issue 10831190: Allow spaces in ext attr values. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/scripts/idlparser.py
diff --git a/lib/dom/scripts/idlparser.py b/lib/dom/scripts/idlparser.py
index 610f49c3eba605214c128352897f6e4047892b23..05fd19da5d0541d8f986e0a9f2f336c9a669eb72 100755
--- a/lib/dom/scripts/idlparser.py
+++ b/lib/dom/scripts/idlparser.py
@@ -358,7 +358,7 @@ class IDLParser(object):
return [Id, MAYBE(OR(['=', ExtAttrValue], ExtAttrArgList))]
def ExtAttrValue():
- return OR(ExtAttrFunctionValue, re.compile(r'[\w&0-9:\-\|]+'))
+ return OR(ExtAttrFunctionValue, re.compile(r'[\w&0-9:\-\| ]+'))
def ExtAttrFunctionValue():
return [Id, ExtAttrArgList]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698