Index: Source/bindings/scripts/v8_attributes.py |
diff --git a/Source/bindings/scripts/v8_attributes.py b/Source/bindings/scripts/v8_attributes.py |
index d774313bb9b63cba2bad1eb57e6a1a131521ec4e..55c25bd61277893e7d00e644adb59ca44e9ebfef 100644 |
--- a/Source/bindings/scripts/v8_attributes.py |
+++ b/Source/bindings/scripts/v8_attributes.py |
@@ -366,7 +366,7 @@ def setter_base_name(interface, attribute, arguments): |
def scoped_content_attribute_name(interface, attribute): |
content_attribute_name = attribute.extended_attributes['Reflect'] or attribute.name.lower() |
namespace = 'SVGNames' if interface.name.startswith('SVG') else 'HTMLNames' |
- includes.add('%s.h' % namespace) |
+ includes.add('core/%s.h' % namespace) |
return '%s::%sAttr' % (namespace, content_attribute_name) |