| Index: third_party/WebKit/LayoutTests/svg/dom/SVGTransform-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGTransform-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGTransform-expected.txt
|
| deleted file mode 100644
|
| index 5b74f1171de796a2086ae913bb053190dd7a72dc..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/svg/dom/SVGTransform-expected.txt
|
| +++ /dev/null
|
| @@ -1,133 +0,0 @@
|
| -This test checks the SVGTransform API
|
| -
|
| -On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
| -
|
| -
|
| -
|
| -Check initial transform values
|
| -PASS transform.type is SVGTransform.SVG_TRANSFORM_MATRIX
|
| -PASS transform.angle is 0
|
| -PASS transform.matrix.a is 1
|
| -PASS transform.matrix.b is 0
|
| -PASS transform.matrix.c is 0
|
| -PASS transform.matrix.d is 1
|
| -PASS transform.matrix.e is 0
|
| -PASS transform.matrix.f is 0
|
| -
|
| -Change to skewX transformation
|
| -PASS transform.setSkewX(45) is undefined.
|
| -PASS transform.type is SVGTransform.SVG_TRANSFORM_SKEWX
|
| -PASS transform.angle is 45
|
| -PASS transform.matrix.a is 1
|
| -PASS transform.matrix.b is 0
|
| -PASS transform.matrix.c.toFixed(1) is "1.0"
|
| -PASS transform.matrix.d is 1
|
| -PASS transform.matrix.e is 0
|
| -PASS transform.matrix.f is 0
|
| -
|
| -Changing matrix.e to 100, should reset transformation type to MATRIX, and angle should be 0
|
| -PASS transform.matrix.e = 100 is 100
|
| -PASS transform.type is SVGTransform.SVG_TRANSFORM_MATRIX
|
| -PASS transform.angle is 0
|
| -PASS transform.matrix.a is 1
|
| -PASS transform.matrix.b is 0
|
| -PASS transform.matrix.c.toFixed(1) is "1.0"
|
| -PASS transform.matrix.d is 1
|
| -PASS transform.matrix.e is 100
|
| -PASS transform.matrix.f is 0
|
| -
|
| -Now revert to initial matrix
|
| -PASS transform.matrix.c = null is null
|
| -PASS transform.matrix.e = 0 is 0
|
| -PASS transform.type is SVGTransform.SVG_TRANSFORM_MATRIX
|
| -PASS transform.angle is 0
|
| -PASS transform.matrix.a is 1
|
| -PASS transform.matrix.b is 0
|
| -PASS transform.matrix.c is 0
|
| -PASS transform.matrix.d is 1
|
| -PASS transform.matrix.e is 0
|
| -PASS transform.matrix.f is 0
|
| -
|
| -Check passing invalid arguments to 'setMatrix'
|
| -PASS transform.setMatrix() threw exception TypeError: Failed to execute 'setMatrix' on 'SVGTransform': 1 argument required, but only 0 present..
|
| -PASS transform.setMatrix(transform) threw exception TypeError: Failed to execute 'setMatrix' on 'SVGTransform': parameter 1 is not of type 'SVGMatrix'..
|
| -PASS transform.setMatrix(svgElement) threw exception TypeError: Failed to execute 'setMatrix' on 'SVGTransform': parameter 1 is not of type 'SVGMatrix'..
|
| -PASS transform.setMatrix('aString') threw exception TypeError: Failed to execute 'setMatrix' on 'SVGTransform': parameter 1 is not of type 'SVGMatrix'..
|
| -PASS transform.setMatrix(1) threw exception TypeError: Failed to execute 'setMatrix' on 'SVGTransform': parameter 1 is not of type 'SVGMatrix'..
|
| -PASS transform.setMatrix(false) threw exception TypeError: Failed to execute 'setMatrix' on 'SVGTransform': parameter 1 is not of type 'SVGMatrix'..
|
| -
|
| -Check passing invalid arguments to 'setTranslate'
|
| -PASS transform.setTranslate() threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': 2 arguments required, but only 0 present..
|
| -PASS transform.setTranslate(transform) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': 2 arguments required, but only 1 present..
|
| -PASS transform.setTranslate(svgElement) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': 2 arguments required, but only 1 present..
|
| -PASS transform.setTranslate('aString') threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': 2 arguments required, but only 1 present..
|
| -PASS transform.setTranslate(1, transform) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(1, svgElement) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(1, 'aString') threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(transform, 1) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(svgElement, 1) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate('aString', 1) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(transform, transform) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(svgElement, svgElement) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate('aString', 'aString') threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(NaN, 1) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(Infinity, 1) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(1, NaN) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setTranslate(1, Infinity) threw exception TypeError: Failed to execute 'setTranslate' on 'SVGTransform': The provided float value is non-finite..
|
| -
|
| -Check passing invalid arguments to 'setScale'
|
| -PASS transform.setScale() threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': 2 arguments required, but only 0 present..
|
| -PASS transform.setScale(transform) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': 2 arguments required, but only 1 present..
|
| -PASS transform.setScale(svgElement) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': 2 arguments required, but only 1 present..
|
| -PASS transform.setScale('aString') threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': 2 arguments required, but only 1 present..
|
| -PASS transform.setScale(1, transform) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(1, svgElement) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(1, 'aString') threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(transform, 1) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(svgElement, 1) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale('aString', 1) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(transform, transform) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(svgElement, svgElement) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale('aString', 'aString') threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(NaN, 1) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(Infinity, 1) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(1, NaN) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setScale(1, Infinity) threw exception TypeError: Failed to execute 'setScale' on 'SVGTransform': The provided float value is non-finite..
|
| -
|
| -Check passing invalid arguments to 'setRotate'
|
| -PASS transform.setRotate() threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 0 present..
|
| -PASS transform.setRotate(transform) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 1 present..
|
| -PASS transform.setRotate(svgElement) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 1 present..
|
| -PASS transform.setRotate('aString') threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 1 present..
|
| -PASS transform.setRotate(1, transform) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 2 present..
|
| -PASS transform.setRotate(1, svgElement) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 2 present..
|
| -PASS transform.setRotate(1, 'aString') threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': 3 arguments required, but only 2 present..
|
| -PASS transform.setRotate(1, 1, transform) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(1, 1, svgElement) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(1, 1, 'aString') threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(NaN, 1, 1) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(Infinity, 1, 1) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(1, NaN, 1) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(1, Infinity, 1) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(1, 1, NaN) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setRotate(1, 1, Infinity) threw exception TypeError: Failed to execute 'setRotate' on 'SVGTransform': The provided float value is non-finite..
|
| -
|
| -Check passing invalid arguments to 'setSkewX'
|
| -PASS transform.setSkewX() threw exception TypeError: Failed to execute 'setSkewX' on 'SVGTransform': 1 argument required, but only 0 present..
|
| -PASS transform.setSkewX(transform) threw exception TypeError: Failed to execute 'setSkewX' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewX(svgElement) threw exception TypeError: Failed to execute 'setSkewX' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewX('aString') threw exception TypeError: Failed to execute 'setSkewX' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewX(NaN) threw exception TypeError: Failed to execute 'setSkewX' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewX(Infinity) threw exception TypeError: Failed to execute 'setSkewX' on 'SVGTransform': The provided float value is non-finite..
|
| -
|
| -Check passing invalid arguments to 'setSkewY'
|
| -PASS transform.setSkewY() threw exception TypeError: Failed to execute 'setSkewY' on 'SVGTransform': 1 argument required, but only 0 present..
|
| -PASS transform.setSkewY(transform) threw exception TypeError: Failed to execute 'setSkewY' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewY(svgElement) threw exception TypeError: Failed to execute 'setSkewY' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewY('aString') threw exception TypeError: Failed to execute 'setSkewY' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewY(NaN) threw exception TypeError: Failed to execute 'setSkewY' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS transform.setSkewY(Infinity) threw exception TypeError: Failed to execute 'setSkewY' on 'SVGTransform': The provided float value is non-finite..
|
| -PASS successfullyParsed is true
|
| -
|
| -TEST COMPLETE
|
| -
|
|
|