diff options
Diffstat (limited to 'webkit/port')
-rw-r--r-- | webkit/port/DerivedSources.make | 1 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_index.cpp | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_index.h | 2 | ||||
-rw-r--r-- | webkit/port/bindings/v8/v8_proxy.cpp | 2 |
4 files changed, 7 insertions, 0 deletions
diff --git a/webkit/port/DerivedSources.make b/webkit/port/DerivedSources.make index 870d73e..fd96f68 100644 --- a/webkit/port/DerivedSources.make +++ b/webkit/port/DerivedSources.make @@ -749,6 +749,7 @@ all : \ V8RangeException.h \ V8Rect.h \ V8SVGAElement.h \ + V8SVGAltGlyphElement.h \ V8SVGAngle.h \ V8SVGAnimatedAngle.h \ V8SVGAnimateColorElement.h \ diff --git a/webkit/port/bindings/v8/v8_index.cpp b/webkit/port/bindings/v8/v8_index.cpp index da59756..902ebfb 100644 --- a/webkit/port/bindings/v8/v8_index.cpp +++ b/webkit/port/bindings/v8/v8_index.cpp @@ -247,6 +247,7 @@ #if ENABLE(SVG) #include "V8SVGAElement.h" +#include "V8SVGAltGlyphElement.h" #include "V8SVGCircleElement.h" #include "V8SVGClipPathElement.h" #include "V8SVGCursorElement.h" @@ -256,6 +257,7 @@ #include "V8SVGEllipseElement.h" #include "V8SVGException.h" #include "V8SVGGElement.h" +#include "V8SVGGlyphElement.h" #include "V8SVGGradientElement.h" #include "V8SVGImageElement.h" #include "V8SVGLinearGradientElement.h" diff --git a/webkit/port/bindings/v8/v8_index.h b/webkit/port/bindings/v8/v8_index.h index 4be3f1bf9..28c59d8 100644 --- a/webkit/port/bindings/v8/v8_index.h +++ b/webkit/port/bindings/v8/v8_index.h @@ -169,6 +169,7 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)(); SVG_FOREIGN_OBJECT_ELEMENT_TYPES(V) \ SVG_USE_ELEMENT_TYPES(V) \ V(SVGAELEMENT, SVGAElement) \ + V(SVGALTGLYPHELEMENT, SVGAltGlyphElement) \ V(SVGCIRCLEELEMENT, SVGCircleElement) \ V(SVGCLIPPATHELEMENT, SVGClipPathElement) \ V(SVGCURSORELEMENT, SVGCursorElement) \ @@ -176,6 +177,7 @@ typedef v8::Persistent<v8::FunctionTemplate> (*FunctionTemplateFactory)(); V(SVGDESCELEMENT, SVGDescElement) \ V(SVGELLIPSEELEMENT, SVGEllipseElement) \ V(SVGGELEMENT, SVGGElement) \ + V(SVGGLYPHELEMENT, SVGGlyphElement) \ V(SVGGRADIENTELEMENT, SVGGradientElement) \ V(SVGIMAGEELEMENT, SVGImageElement) \ V(SVGLINEARGRADIENTELEMENT, SVGLinearGradientElement) \ diff --git a/webkit/port/bindings/v8/v8_proxy.cpp b/webkit/port/bindings/v8/v8_proxy.cpp index 2d4109a..df82d3b 100644 --- a/webkit/port/bindings/v8/v8_proxy.cpp +++ b/webkit/port/bindings/v8/v8_proxy.cpp @@ -2252,6 +2252,7 @@ FOR_EACH_TAG(ADD_TO_HASH_MAP) FOR_EACH_FOREIGN_OBJECT_TAG(macro) \ FOR_EACH_USE_TAG(macro) \ macro(a, A) \ + macro(altGlyph, ALTGLYPH) \ macro(circle, CIRCLE) \ macro(clipPath, CLIPPATH) \ macro(cursor, CURSOR) \ @@ -2259,6 +2260,7 @@ FOR_EACH_TAG(ADD_TO_HASH_MAP) macro(desc, DESC) \ macro(ellipse, ELLIPSE) \ macro(g, G) \ + macro(glyph, GLYPH) \ macro(image, IMAGE) \ macro(linearGradient, LINEARGRADIENT) \ macro(line, LINE) \ |