OLD | NEW |
(Empty) | |
| 1 Check that |undefined| and |null| arguments do not cause crashes, but do throw e
xceptions. |
| 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 |
| 5 |
| 6 SVGGeometryElement |
| 7 |
| 8 isPointInFill(SVGPoint point) |
| 9 PASS circle.isPointInFill(point) did not throw exception. |
| 10 |
| 11 isPointInStroke(SVGPoint point) |
| 12 PASS circle.isPointInStroke(point) did not throw exception. |
| 13 |
| 14 |
| 15 SVGSVGElement |
| 16 |
| 17 getIntersectionList(SVGRect rect, SVGElement? referenceElement) |
| 18 PASS svg.getIntersectionList(rect, svg) did not throw exception. |
| 19 PASS svg.getIntersectionList(null, svg) threw exception TypeError: Failed to exe
cute 'getIntersectionList' on 'SVGSVGElement': parameter 1 is not of type 'SVGRe
ct'.. |
| 20 PASS svg.getIntersectionList(rect, undefined) did not throw exception. |
| 21 PASS svg.getIntersectionList(rect, null) did not throw exception. |
| 22 |
| 23 getEnclosureList(SVGRect rect, SVGElement? referenceElement) |
| 24 PASS svg.getEnclosureList(rect, svg) did not throw exception. |
| 25 PASS svg.getEnclosureList(null, svg) threw exception TypeError: Failed to execut
e 'getEnclosureList' on 'SVGSVGElement': parameter 1 is not of type 'SVGRect'.. |
| 26 PASS svg.getEnclosureList(rect, undefined) did not throw exception. |
| 27 PASS svg.getEnclosureList(rect, null) did not throw exception. |
| 28 |
| 29 checkIntersection(SVGElement element, SVGRect rect) |
| 30 PASS svg.checkIntersection(svg, rect) did not throw exception. |
| 31 PASS svg.checkIntersection(null, rect) threw exception TypeError: Failed to exec
ute 'checkIntersection' on 'SVGSVGElement': parameter 1 is not of type 'SVGEleme
nt'.. |
| 32 PASS svg.checkIntersection(svg, null) threw exception TypeError: Failed to execu
te 'checkIntersection' on 'SVGSVGElement': parameter 2 is not of type 'SVGRect'.
. |
| 33 |
| 34 checkEnclosure(SVGElement element, SVGRect rect) |
| 35 PASS svg.checkEnclosure(svg, rect) did not throw exception. |
| 36 PASS svg.checkEnclosure(null, rect) threw exception TypeError: Failed to execute
'checkEnclosure' on 'SVGSVGElement': parameter 1 is not of type 'SVGElement'.. |
| 37 PASS svg.checkEnclosure(svg, null) threw exception TypeError: Failed to execute
'checkEnclosure' on 'SVGSVGElement': parameter 2 is not of type 'SVGRect'.. |
| 38 |
| 39 SVGTransform createSVGTransformFromMatrix([Default=Undefined] optional SVGMatrix
matrix) |
| 40 PASS svg.createSVGTransformFromMatrix(matrix) did not throw exception. |
| 41 PASS svg.createSVGTransformFromMatrix(undefined) threw exception TypeError: Fail
ed to execute 'createSVGTransformFromMatrix' on 'SVGSVGElement': parameter 1 is
not of type 'SVGMatrix'.. |
| 42 PASS svg.createSVGTransformFromMatrix(null) threw exception TypeError: Failed to
execute 'createSVGTransformFromMatrix' on 'SVGSVGElement': parameter 1 is not o
f type 'SVGMatrix'.. |
| 43 |
| 44 |
| 45 SVGTextContentElement |
| 46 |
| 47 getCharNumAtPosition(SVGPoint point) |
| 48 PASS text.getCharNumAtPosition(point) did not throw exception. |
| 49 PASS text.getCharNumAtPosition(null) threw exception TypeError: Failed to execut
e 'getCharNumAtPosition' on 'SVGTextContentElement': parameter 1 is not of type
'SVGPoint'.. |
| 50 PASS successfullyParsed is true |
| 51 |
| 52 TEST COMPLETE |
| 53 |
OLD | NEW |