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

Unified Diff: Source/build/scripts/make_element_factory.py

Issue 182843002: Drop isindex from HTMLTagNames. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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/build/scripts/make_element_type_helpers.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/scripts/make_element_factory.py
diff --git a/Source/build/scripts/make_element_factory.py b/Source/build/scripts/make_element_factory.py
index b49560c4ef2fc991f8cf0120469a3328d5f6c965..d9fb4d60e5eaa53a8b33d610260f32af0da77e20 100755
--- a/Source/build/scripts/make_element_factory.py
+++ b/Source/build/scripts/make_element_factory.py
@@ -78,7 +78,7 @@ class MakeElementFactoryWriter(MakeQualifiedNamesWriter):
interface_counts[tag['interface']] += 1
for tag in tags:
- tag['multipleTagNames'] = interface_counts[tag['interface']] > 1
+ tag['multipleTagNames'] = (interface_counts[tag['interface']] > 1 or tag['interface'] == fallback_interface)
self._template_context.update({
'fallback_interface': fallback_interface,
« no previous file with comments | « no previous file | Source/build/scripts/make_element_type_helpers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698