Class: SVGTransformList

SVGTransformList.SVGTransformList(elem) → {SVGTransformList}

SVGTransformList implementation for Webkit. These methods do not currently raise any exceptions. These methods also do not check that transforms are being inserted. This is basically implementing as much of SVGTransformList that we need to get the job done.

Constructor

new SVGTransformList(elem) → {SVGTransformList}

Parameters:
Name Type Description
elem Element
Implements:
Source:
Returns:
Type
SVGTransformList

Methods

appendItem(newItem) → {SVGTransform}

Parameters:
Name Type Description
newItem SVGTransform
Implements:
Source:
Returns:
Type
SVGTransform

clear() → {void}

Implements:
Source:
Returns:
Type
void

getItem(index) → {SVGTransform}

Parameters:
Name Type Description
index Integer

unsigned long

Implements:
Source:
Throws:
Error
Returns:
Type
SVGTransform

initialize(newItem) → {void}

Parameters:
Name Type Description
newItem SVGTransform
Implements:
Source:
Returns:
Type
void

insertItemBefore(newItem, index) → {SVGTransform}

Parameters:
Name Type Description
newItem SVGTransform
index Integer

unsigned long

Implements:
Source:
Returns:
Type
SVGTransform

removeItem(index) → {SVGTransform}

Parameters:
Name Type Description
index Integer

unsigned long

Implements:
Source:
Throws:
Error
Returns:
Type
SVGTransform

replaceItem(newItem, index) → {SVGTransform}

Parameters:
Name Type Description
newItem SVGTransform
index Integer

unsigned long

Implements:
Source:
Returns:
Type
SVGTransform