| Index: LayoutTests/svg/dom/SVGNumberList-basics-expected.txt
|
| diff --git a/LayoutTests/svg/dom/SVGNumberList-basics-expected.txt b/LayoutTests/svg/dom/SVGNumberList-basics-expected.txt
|
| index d5402a91448a3b8dab4309e7546b54083e959fd7..0e36fe94a7eeb8f7b16737523e91be7396c5b504 100644
|
| --- a/LayoutTests/svg/dom/SVGNumberList-basics-expected.txt
|
| +++ b/LayoutTests/svg/dom/SVGNumberList-basics-expected.txt
|
| @@ -72,6 +72,12 @@ PASS text1.rotate.baseVal.replaceItem(30, 0) threw exception TypeError: Failed t
|
| PASS text1.rotate.baseVal.replaceItem('aString', 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'..
|
| PASS text1.rotate.baseVal.replaceItem(text1, 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'..
|
| PASS text1.rotate.baseVal.replaceItem(null, 0) threw exception TypeError: Failed to execute 'replaceItem' on 'SVGNumberList': parameter 1 is not of type 'SVGNumber'..
|
| +
|
| +Test uncommon values for indexed setter
|
| +PASS text1.rotate.baseVal[0] = 30 threw exception TypeError: Failed to set an indexed property on 'SVGNumberList': The provided value is not of type 'SVGNumber'..
|
| +PASS text1.rotate.baseVal[0] = 'aString' threw exception TypeError: Failed to set an indexed property on 'SVGNumberList': The provided value is not of type 'SVGNumber'..
|
| +PASS text1.rotate.baseVal[0] = text1 threw exception TypeError: Failed to set an indexed property on 'SVGNumberList': The provided value is not of type 'SVGNumber'..
|
| +PASS text1.rotate.baseVal[0] = null threw exception TypeError: Failed to set an indexed property on 'SVGNumberList': The provided value is not of type 'SVGNumber'..
|
| PASS text1.rotate.baseVal.replaceItem(text1.rotate.baseVal.getItem(0), 0) is text1.rotate.baseVal.getItem(0)
|
| PASS text1.rotate.baseVal.numberOfItems is 4
|
| PASS text1.rotate.baseVal.getItem(0).value is 1
|
|
|