| Index: core/svg/SVGMarkerElement.idl | 
| diff --git a/core/svg/SVGMarkerElement.idl b/core/svg/SVGMarkerElement.idl | 
| index 0e22319bcda8d56a4eeb008a0e2c3184d8094a7c..4527585f38e8f56065bb8d0c934b2a34ed0e09ed 100644 | 
| --- a/core/svg/SVGMarkerElement.idl | 
| +++ b/core/svg/SVGMarkerElement.idl | 
| @@ -23,28 +23,32 @@ | 
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
| */ | 
|  | 
| -interface SVGMarkerElement : SVGElement { | 
| +// http://www.w3.org/TR/SVG2/painting.html#InterfaceSVGMarkerElement | 
| + | 
| +[ | 
| +    TypeChecking=Interface|Nullable, | 
| +] interface SVGMarkerElement : SVGElement { | 
| + | 
| // Marker Unit Types | 
| -    const unsigned short SVG_MARKERUNITS_UNKNOWN        = 0; | 
| +    const unsigned short SVG_MARKERUNITS_UNKNOWN = 0; | 
| const unsigned short SVG_MARKERUNITS_USERSPACEONUSE = 1; | 
| -    const unsigned short SVG_MARKERUNITS_STROKEWIDTH    = 2; | 
| +    const unsigned short SVG_MARKERUNITS_STROKEWIDTH = 2; | 
|  | 
| // Marker Orientation Types | 
| -    const unsigned short SVG_MARKER_ORIENT_UNKNOWN      = 0; | 
| -    const unsigned short SVG_MARKER_ORIENT_AUTO         = 1; | 
| -    const unsigned short SVG_MARKER_ORIENT_ANGLE        = 2; | 
| +    const unsigned short SVG_MARKER_ORIENT_UNKNOWN = 0; | 
| +    const unsigned short SVG_MARKER_ORIENT_AUTO = 1; | 
| +    const unsigned short SVG_MARKER_ORIENT_ANGLE = 2; | 
|  | 
| -    readonly attribute SVGAnimatedLength      refX; | 
| -    readonly attribute SVGAnimatedLength      refY; | 
| +    readonly attribute SVGAnimatedLength refX; | 
| +    readonly attribute SVGAnimatedLength refY; | 
| readonly attribute SVGAnimatedEnumeration markerUnits; | 
| -    readonly attribute SVGAnimatedLength      markerWidth; | 
| -    readonly attribute SVGAnimatedLength      markerHeight; | 
| +    readonly attribute SVGAnimatedLength markerWidth; | 
| +    readonly attribute SVGAnimatedLength markerHeight; | 
| readonly attribute SVGAnimatedEnumeration orientType; | 
| -    readonly attribute SVGAnimatedAngle       orientAngle; | 
| +    readonly attribute SVGAnimatedAngle orientAngle; | 
|  | 
| void setOrientToAuto(); | 
| -    void setOrientToAngle([Default=Undefined] optional SVGAngle angle); | 
| +    void setOrientToAngle(SVGAngle angle); | 
| }; | 
|  | 
| SVGMarkerElement implements SVGFitToViewBox; | 
| - | 
|  |