| Index: LayoutTests/svg/dom/SVGLengthList-basics-expected.txt
|
| diff --git a/LayoutTests/svg/dom/SVGLengthList-basics-expected.txt b/LayoutTests/svg/dom/SVGLengthList-basics-expected.txt
|
| index e2924784387aa919c89923f141ce7c8075153f59..ea1b3c6908592b385e9e92b38ccf3b6ab87ad9c1 100644
|
| --- a/LayoutTests/svg/dom/SVGLengthList-basics-expected.txt
|
| +++ b/LayoutTests/svg/dom/SVGLengthList-basics-expected.txt
|
| @@ -15,7 +15,7 @@ Test uncommon arguments for initialize()
|
| PASS text1.x.baseVal.initialize(30) threw exception TypeError: Failed to execute 'initialize' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.initialize('aString') threw exception TypeError: Failed to execute 'initialize' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.initialize(text1) threw exception TypeError: Failed to execute 'initialize' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| -PASS text1.x.baseVal.initialize(null) threw exception TypeError: Failed to execute 'initialize' on 'SVGLengthList': The PassListItemType provided is invalid..
|
| +PASS text1.x.baseVal.initialize(null) threw exception TypeError: Failed to execute 'initialize' on 'SVGLengthList': Lists must be initialized with a valid item..
|
|
|
| Test uncommon arguments for getItem()
|
| PASS text1.x.baseVal.getItem(30) threw exception IndexSizeError: Index or size was negative, or greater than the allowed value..
|
| @@ -55,7 +55,7 @@ PASS text1.getAttribute('x') is "500 1000 1500"
|
| PASS text1.x.baseVal.insertItemBefore(30, 0) threw exception TypeError: Failed to execute 'insertItemBefore' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.insertItemBefore('aString', 0) threw exception TypeError: Failed to execute 'insertItemBefore' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.insertItemBefore(text1, 0) threw exception TypeError: Failed to execute 'insertItemBefore' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| -PASS text1.x.baseVal.insertItemBefore(null, 0) threw exception TypeError: Failed to execute 'insertItemBefore' on 'SVGLengthList': The PassListItemType provided is invalid..
|
| +PASS text1.x.baseVal.insertItemBefore(null, 0) threw exception TypeError: Failed to execute 'insertItemBefore' on 'SVGLengthList': An invalid item cannot be inserted to a list..
|
|
|
| Set x='1 2 3 4' for text1
|
| PASS text1.setAttribute('x', '1 2 3 4') is undefined.
|
| @@ -85,7 +85,7 @@ PASS text1.x.baseVal.replaceItem(null) threw exception TypeError: Failed to exec
|
| PASS text1.x.baseVal.replaceItem(30, 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.replaceItem('aString', 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.replaceItem(text1, 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| -PASS text1.x.baseVal.replaceItem(null, 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGLengthList': The PassListItemType provided is invalid..
|
| +PASS text1.x.baseVal.replaceItem(null, 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGLengthList': An invalid item cannot be replaced with an existing list item..
|
| PASS text1.x.baseVal.replaceItem(text1.x.baseVal.getItem(0), 0) is text1.x.baseVal.getItem(0)
|
| PASS text1.x.baseVal.numberOfItems is 4
|
| PASS text1.x.baseVal.getItem(0).value is 1
|
| @@ -137,10 +137,10 @@ Test uncommon arguments for appendItem()
|
| PASS text1.x.baseVal.appendItem(30) threw exception TypeError: Failed to execute 'appendItem' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.appendItem('aString') threw exception TypeError: Failed to execute 'appendItem' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| PASS text1.x.baseVal.appendItem(text1) threw exception TypeError: Failed to execute 'appendItem' on 'SVGLengthList': parameter 1 is not of type 'SVGLength'..
|
| -PASS text1.x.baseVal.appendItem(null) threw exception TypeError: Failed to execute 'appendItem' on 'SVGLengthList': The PassListItemType provided is invalid..
|
| +PASS text1.x.baseVal.appendItem(null) threw exception TypeError: Failed to execute 'appendItem' on 'SVGLengthList': An invalid item cannot be appended to a list..
|
|
|
| Testing animVal clear throws
|
| -PASS text1.x.animVal.clear() threw exception NoModificationAllowedError: An attempt was made to modify an object where modifications are not allowed..
|
| +PASS text1.x.animVal.clear() threw exception NoModificationAllowedError: Failed to execute 'clear' on 'SVGLengthList': The object is read-only..
|
| PASS text1.x.baseVal.clear() is undefined.
|
| PASS successfullyParsed is true
|
|
|
|
|