OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../resources/js-test.js"></script> |
| 3 <svg> |
| 4 <circle></circle> |
| 5 <text></text> |
| 6 </svg> |
| 7 <script> |
| 8 description( |
| 9 'Check that |undefined| and |null| arguments do not cause crashes, ' + |
| 10 'but do throw exceptions.'); |
| 11 |
| 12 var svg = document.querySelector('svg'); |
| 13 var circle = document.querySelector('circle'); |
| 14 var text = document.querySelector('text'); |
| 15 |
| 16 var matrix = svg.createSVGMatrix(); |
| 17 var point = svg.createSVGPoint(); |
| 18 var rect = svg.createSVGRect(); |
| 19 |
| 20 |
| 21 debug('SVGGeometryElement'); |
| 22 // SVGGeometryElement is an abstract class: instantiate object of derived class |
| 23 |
| 24 debug(''); |
| 25 debug('isPointInFill(SVGPoint point)'); |
| 26 shouldNotThrow('circle.isPointInFill(point)'); |
| 27 // shouldThrow('circle.isPointInFill(undefined)'); // CRASH |
| 28 // shouldThrow('circle.isPointInFill(null)'); // CRASH |
| 29 |
| 30 debug(''); |
| 31 debug('isPointInStroke(SVGPoint point)'); |
| 32 shouldNotThrow('circle.isPointInStroke(point)'); |
| 33 // shouldThrow('circle.isPointInStroke(undefined)'); // CRASH |
| 34 // shouldThrow('circle.isPointInStroke(null)'); // CRASH |
| 35 |
| 36 |
| 37 debug(''); |
| 38 debug(''); |
| 39 debug('SVGSVGElement'); |
| 40 |
| 41 debug(''); |
| 42 debug('getIntersectionList(SVGRect rect, SVGElement? referenceElement)'); |
| 43 shouldNotThrow('svg.getIntersectionList(rect, svg)'); |
| 44 // shouldThrow('svg.getIntersectionList(undefined, svg)'); // CRASH |
| 45 shouldThrow('svg.getIntersectionList(null, svg)'); |
| 46 shouldNotThrow('svg.getIntersectionList(rect, undefined)'); |
| 47 shouldNotThrow('svg.getIntersectionList(rect, null)'); |
| 48 |
| 49 debug(''); |
| 50 debug('getEnclosureList(SVGRect rect, SVGElement? referenceElement)'); |
| 51 shouldNotThrow('svg.getEnclosureList(rect, svg)'); |
| 52 // shouldThrow('svg.getEnclosureList(undefined, svg)'); // CRASH |
| 53 shouldThrow('svg.getEnclosureList(null, svg)'); |
| 54 shouldNotThrow('svg.getEnclosureList(rect, undefined)'); |
| 55 shouldNotThrow('svg.getEnclosureList(rect, null)'); |
| 56 |
| 57 debug(''); |
| 58 debug('checkIntersection(SVGElement element, SVGRect rect)'); |
| 59 shouldNotThrow('svg.checkIntersection(svg, rect)'); |
| 60 // shouldThrow('svg.checkIntersection(undefined, rect)'); // FAIL |
| 61 shouldThrow('svg.checkIntersection(null, rect)'); |
| 62 // shouldThrow('svg.checkIntersection(svg, undefined)'); // CRASH |
| 63 shouldThrow('svg.checkIntersection(svg, null)'); |
| 64 |
| 65 debug(''); |
| 66 debug('checkEnclosure(SVGElement element, SVGRect rect)'); |
| 67 shouldNotThrow('svg.checkEnclosure(svg, rect)'); |
| 68 // shouldThrow('svg.checkEnclosure(undefined, rect)'); // FAIL |
| 69 shouldThrow('svg.checkEnclosure(null, rect)'); |
| 70 // shouldThrow('svg.checkEnclosure(svg, undefined)'); // CRASH |
| 71 shouldThrow('svg.checkEnclosure(svg, null)'); |
| 72 |
| 73 debug(''); |
| 74 debug('SVGTransform createSVGTransformFromMatrix([Default=Undefined] optional SV
GMatrix matrix)'); |
| 75 // shouldNotThrow('svg.createSVGTransformFromMatrix()'); // FAIL |
| 76 shouldNotThrow('svg.createSVGTransformFromMatrix(matrix)'); |
| 77 shouldThrow('svg.createSVGTransformFromMatrix(undefined)'); |
| 78 shouldThrow('svg.createSVGTransformFromMatrix(null)'); |
| 79 |
| 80 |
| 81 debug(''); |
| 82 debug(''); |
| 83 debug('SVGTextContentElement'); |
| 84 |
| 85 debug(''); |
| 86 debug('getCharNumAtPosition(SVGPoint point)'); |
| 87 shouldNotThrow('text.getCharNumAtPosition(point)'); |
| 88 // shouldThrow('text.getCharNumAtPosition(undefined)'); // CRASH |
| 89 shouldThrow('text.getCharNumAtPosition(null)'); |
| 90 |
| 91 </script> |
OLD | NEW |