Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: LayoutTests/svg/dom/undefined-null-expected.txt

Issue 159973005: Add tests for |undefined| and |null| in SVG interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tweak Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/svg/dom/undefined-null.html ('k') | Source/core/svg/SVGSVGElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/dom/undefined-null-expected.txt
diff --git a/LayoutTests/svg/dom/undefined-null-expected.txt b/LayoutTests/svg/dom/undefined-null-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6f4ee8868bfefcd73f05d639e63e9ea6f315fb74
--- /dev/null
+++ b/LayoutTests/svg/dom/undefined-null-expected.txt
@@ -0,0 +1,53 @@
+Check that |undefined| and |null| arguments do not cause crashes, but do throw exceptions.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+SVGGeometryElement
+
+isPointInFill(SVGPoint point)
+PASS circle.isPointInFill(point) did not throw exception.
+
+isPointInStroke(SVGPoint point)
+PASS circle.isPointInStroke(point) did not throw exception.
+
+
+SVGSVGElement
+
+getIntersectionList(SVGRect rect, SVGElement? referenceElement)
+PASS svg.getIntersectionList(rect, svg) did not throw exception.
+PASS svg.getIntersectionList(null, svg) threw exception TypeError: Failed to execute 'getIntersectionList' on 'SVGSVGElement': parameter 1 is not of type 'SVGRect'..
+PASS svg.getIntersectionList(rect, undefined) did not throw exception.
+PASS svg.getIntersectionList(rect, null) did not throw exception.
+
+getEnclosureList(SVGRect rect, SVGElement? referenceElement)
+PASS svg.getEnclosureList(rect, svg) did not throw exception.
+PASS svg.getEnclosureList(null, svg) threw exception TypeError: Failed to execute 'getEnclosureList' on 'SVGSVGElement': parameter 1 is not of type 'SVGRect'..
+PASS svg.getEnclosureList(rect, undefined) did not throw exception.
+PASS svg.getEnclosureList(rect, null) did not throw exception.
+
+checkIntersection(SVGElement element, SVGRect rect)
+PASS svg.checkIntersection(svg, rect) did not throw exception.
+PASS svg.checkIntersection(null, rect) threw exception TypeError: Failed to execute 'checkIntersection' on 'SVGSVGElement': parameter 1 is not of type 'SVGElement'..
+PASS svg.checkIntersection(svg, null) threw exception TypeError: Failed to execute 'checkIntersection' on 'SVGSVGElement': parameter 2 is not of type 'SVGRect'..
+
+checkEnclosure(SVGElement element, SVGRect rect)
+PASS svg.checkEnclosure(svg, rect) did not throw exception.
+PASS svg.checkEnclosure(null, rect) threw exception TypeError: Failed to execute 'checkEnclosure' on 'SVGSVGElement': parameter 1 is not of type 'SVGElement'..
+PASS svg.checkEnclosure(svg, null) threw exception TypeError: Failed to execute 'checkEnclosure' on 'SVGSVGElement': parameter 2 is not of type 'SVGRect'..
+
+SVGTransform createSVGTransformFromMatrix([Default=Undefined] optional SVGMatrix matrix)
+PASS svg.createSVGTransformFromMatrix(matrix) did not throw exception.
+PASS svg.createSVGTransformFromMatrix(undefined) threw exception TypeError: Failed to execute 'createSVGTransformFromMatrix' on 'SVGSVGElement': parameter 1 is not of type 'SVGMatrix'..
+PASS svg.createSVGTransformFromMatrix(null) threw exception TypeError: Failed to execute 'createSVGTransformFromMatrix' on 'SVGSVGElement': parameter 1 is not of type 'SVGMatrix'..
+
+
+SVGTextContentElement
+
+getCharNumAtPosition(SVGPoint point)
+PASS text.getCharNumAtPosition(point) did not throw exception.
+PASS text.getCharNumAtPosition(null) threw exception TypeError: Failed to execute 'getCharNumAtPosition' on 'SVGTextContentElement': parameter 1 is not of type 'SVGPoint'..
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
« no previous file with comments | « LayoutTests/svg/dom/undefined-null.html ('k') | Source/core/svg/SVGSVGElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698