| Index: third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGMarkerElement-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGMarkerElement-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGMarkerElement-expected.txt
|
| deleted file mode 100644
|
| index 0c90eb83a4f210bdd0aa85aa2f598d6d6a7d8d69..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/svg/dom/SVGAnimatedEnumeration-SVGMarkerElement-expected.txt
|
| +++ /dev/null
|
| @@ -1,97 +0,0 @@
|
| -This test checks the use of SVGAnimatedEnumeration within SVGMarkerElement
|
| -
|
| -On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
|
| -
|
| -
|
| -
|
| -Check initial 'markerUnits' value
|
| -PASS markerElement.markerUnits.toString() is "[object SVGAnimatedEnumeration]"
|
| -PASS typeof(markerElement.markerUnits.baseVal) is "number"
|
| -PASS markerElement.markerUnits.baseVal is SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE
|
| -
|
| -Switch to 'strokeWidth'
|
| -PASS markerElement.markerUnits.baseVal = SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH is SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH
|
| -PASS markerElement.markerUnits.baseVal is SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH
|
| -PASS markerElement.getAttribute('markerUnits') is "strokeWidth"
|
| -
|
| -Try setting invalid values
|
| -PASS markerElement.markerUnits.baseVal = 3 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (3) is larger than the largest allowed value (2)..
|
| -PASS markerElement.markerUnits.baseVal is SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH
|
| -PASS markerElement.getAttribute('markerUnits') is "strokeWidth"
|
| -PASS markerElement.markerUnits.baseVal = -1 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (65535) is larger than the largest allowed value (2)..
|
| -PASS markerElement.markerUnits.baseVal is SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH
|
| -PASS markerElement.getAttribute('markerUnits') is "strokeWidth"
|
| -PASS markerElement.markerUnits.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable..
|
| -PASS markerElement.markerUnits.baseVal is SVGMarkerElement.SVG_MARKERUNITS_STROKEWIDTH
|
| -PASS markerElement.getAttribute('markerUnits') is "strokeWidth"
|
| -
|
| -Switch to 'userSpaceOnUse'
|
| -PASS markerElement.markerUnits.baseVal = SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE is SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE
|
| -PASS markerElement.markerUnits.baseVal is SVGMarkerElement.SVG_MARKERUNITS_USERSPACEONUSE
|
| -PASS markerElement.getAttribute('markerUnits') is "userSpaceOnUse"
|
| -
|
| -Check initial 'orient' value
|
| -PASS markerElement.orientType.toString() is "[object SVGAnimatedEnumeration]"
|
| -PASS typeof(markerElement.orientType.baseVal) is "number"
|
| -PASS markerElement.orientAngle.baseVal.value is 0
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_UNSPECIFIED
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_AUTO
|
| -
|
| -Switch to 'Pi/2 rad' value - via setOrientToAngle()
|
| -PASS anglePiHalfRad = svgElement.createSVGAngle(); anglePiHalfRad.newValueSpecifiedUnits(SVGAngle.SVG_ANGLETYPE_RAD, (Math.PI / 2).toFixed(2)) is undefined.
|
| -PASS markerElement.setOrientToAngle(anglePiHalfRad) is undefined.
|
| -PASS markerElement.orientAngle.baseVal.value.toFixed(1) is "90.0"
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_RAD
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE
|
| -PASS markerElement.getAttribute('orient') is "1.57rad"
|
| -
|
| -Switch to 'auto' value - via setOrientToAuto()
|
| -PASS markerElement.setOrientToAuto() is undefined.
|
| -PASS markerElement.orientAngle.baseVal.value is 0
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_UNSPECIFIED
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_AUTO
|
| -PASS markerElement.getAttribute('orient') is "auto"
|
| -
|
| -Switch to '20deg' value - via setOrientToAngle()
|
| -PASS angle20deg = svgElement.createSVGAngle(); angle20deg.newValueSpecifiedUnits(SVGAngle.SVG_ANGLETYPE_DEG, 20) is undefined.
|
| -PASS markerElement.setOrientToAngle(angle20deg) is undefined.
|
| -PASS markerElement.orientAngle.baseVal.value is 20
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_DEG
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE
|
| -PASS markerElement.getAttribute('orient') is "20deg"
|
| -
|
| -Switch to '10deg' value
|
| -PASS markerElement.orientAngle.baseVal.value = 10 is 10
|
| -PASS markerElement.orientAngle.baseVal.value is 10
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_DEG
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE
|
| -PASS markerElement.getAttribute('orient') is "10deg"
|
| -
|
| -Switch to 'auto' value - by modifying orientType
|
| -PASS markerElement.orientType.baseVal = SVGMarkerElement.SVG_MARKER_ORIENT_AUTO is SVGMarkerElement.SVG_MARKER_ORIENT_AUTO
|
| -PASS markerElement.orientAngle.baseVal.value is 0
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_UNSPECIFIED
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_AUTO
|
| -PASS markerElement.getAttribute('orient') is "auto"
|
| -
|
| -Try setting invalid values
|
| -PASS markerElement.orientType.baseVal = 3 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (3) is larger than the largest allowed value (2)..
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE
|
| -PASS markerElement.getAttribute('orient') is "10deg"
|
| -PASS markerElement.orientType.baseVal = -1 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided (65535) is larger than the largest allowed value (2)..
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE
|
| -PASS markerElement.getAttribute('orient') is "10deg"
|
| -PASS markerElement.orientType.baseVal = 0 threw exception TypeError: Failed to set the 'baseVal' property on 'SVGAnimatedEnumeration': The enumeration value provided is 0, which is not settable..
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE
|
| -PASS markerElement.getAttribute('orient') is "10deg"
|
| -
|
| -Switch back to 'auto' value
|
| -PASS markerElement.orientType.baseVal = SVGMarkerElement.SVG_MARKER_ORIENT_AUTO is SVGMarkerElement.SVG_MARKER_ORIENT_AUTO
|
| -PASS markerElement.orientAngle.baseVal.value is 0
|
| -PASS markerElement.orientAngle.baseVal.unitType is SVGAngle.SVG_ANGLETYPE_UNSPECIFIED
|
| -PASS markerElement.orientType.baseVal is SVGMarkerElement.SVG_MARKER_ORIENT_AUTO
|
| -PASS markerElement.getAttribute('orient') is "auto"
|
| -PASS successfullyParsed is true
|
| -
|
| -TEST COMPLETE
|
| -
|
|
|