| Index: Source/core/svg/SVGAltGlyphElement.cpp
|
| diff --git a/Source/core/svg/SVGAltGlyphElement.cpp b/Source/core/svg/SVGAltGlyphElement.cpp
|
| index 4c6d205e8fd57f1ee40f5d4e46eaa55a0ded65e9..2d811d24900964f3be9255befc168c9c32f5514e 100644
|
| --- a/Source/core/svg/SVGAltGlyphElement.cpp
|
| +++ b/Source/core/svg/SVGAltGlyphElement.cpp
|
| @@ -35,13 +35,15 @@
|
|
|
| namespace WebCore {
|
|
|
| -SVGAltGlyphElement::SVGAltGlyphElement(Document& document)
|
| +inline SVGAltGlyphElement::SVGAltGlyphElement(Document& document)
|
| : SVGTextPositioningElement(SVGNames::altGlyphTag, document)
|
| , SVGURIReference(this)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| +DEFINE_NODE_FACTORY(SVGAltGlyphElement)
|
| +
|
| void SVGAltGlyphElement::setGlyphRef(const AtomicString&, ExceptionState& exceptionState)
|
| {
|
| exceptionState.throwDOMException(NoModificationAllowedError, ExceptionMessages::readOnly());
|
|
|