summaryrefslogtreecommitdiff
path: root/test/get-path-extents.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2007-02-21 11:50:24 -0500
committerBehdad Esfahbod <behdad@behdad.org>2007-02-21 11:50:24 -0500
commitc6a067f967f9b92328e7d1ca2a4eba6fb4c6dfdf (patch)
tree0dd216490621b38ae7f5dab3f5cb5a356c194785 /test/get-path-extents.c
parent363b1a40b5719582c670bdb9e7cd8087bcbf9666 (diff)
downloadcairo-c6a067f967f9b92328e7d1ca2a4eba6fb4c6dfdf.tar.gz
[test] Add test case for bug #7965 to the get-path-extents test
Diffstat (limited to 'test/get-path-extents.c')
-rw-r--r--test/get-path-extents.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/get-path-extents.c b/test/get-path-extents.c
index e755f845f..c4874006d 100644
--- a/test/get-path-extents.c
+++ b/test/get-path-extents.c
@@ -114,6 +114,19 @@ draw (cairo_t *cr, int width, int height)
!check_extents (phase, cr2, STROKE, EQUALS, 0, 0, 0, 0))
return CAIRO_TEST_FAILURE;
+ /* http://bugs.freedesktop.org/show_bug.cgi?id=7965 */
+ phase = "A vertical, open path";
+ cairo_save (cr2);
+ cairo_set_line_cap (cr2, CAIRO_LINE_CAP_ROUND);
+ cairo_set_line_join (cr2, CAIRO_LINE_JOIN_ROUND);
+ cairo_move_to (cr2, 0, 180);
+ cairo_line_to (cr2, 750, 180);
+ if (!check_extents (phase, cr2, FILL, EQUALS, 0, 0, 0, 0) ||
+ !check_extents (phase, cr2, STROKE, EQUALS, -5, 175, 760, 10))
+ return CAIRO_TEST_FAILURE;
+ cairo_new_path (cr2);
+ cairo_restore (cr2);
+
phase = "Simple rect";
cairo_save (cr2);
cairo_rectangle (cr2, 10, 10, 80, 80);