2 * Copyright © Chris Wilson, 2008
4 * Permission to use, copy, modify, distribute, and sell this software
5 * and its documentation for any purpose is hereby granted without
6 * fee, provided that the above copyright notice appear in all copies
7 * and that both that copyright notice and this permission notice
8 * appear in supporting documentation, and that the name of
9 * Chris Wilson not be used in advertising or publicity pertaining to
10 * distribution of the software without specific, written prior
11 * permission. Chris Wilson makes no representations about the
12 * suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
15 * CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL CHRIS WILSON BE LIABLE FOR ANY SPECIAL,
18 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * Authors: Chris Wilson <chris@chris-wilson.co.uk>
26 #include "cairo-test.h"
28 /* This is a test case for the following bug:
30 * crafted gif file will crash firefox
31 * [XError: 'BadAlloc (insufficient resources for operation)']
32 * https://bugzilla.mozilla.org/show_bug.cgi?id=424333
34 * The output is currently marked as XFAIL as pixman is still limited
38 static cairo_test_draw_function_t draw
;
42 "Exercises mozilla bug 424333 - handling of massive images",
47 #ifdef WORDS_BIGENDIAN
49 #define GREEN_MASK 0xA
52 #define GREEN_MASK 0x50
55 static cairo_test_status_t
56 draw (cairo_t
*cr
, int width
, int height
)
58 cairo_surface_t
*surface
;
61 cairo_set_source_rgb (cr
, 0, 0, 1); /* blue */
64 surface
= cairo_image_surface_create (CAIRO_FORMAT_A1
, 64000, 20);
65 data
= cairo_image_surface_get_data (surface
);
67 int stride
= cairo_image_surface_get_stride (surface
);
68 int width
= cairo_image_surface_get_width (surface
);
69 int height
= cairo_image_surface_get_height (surface
);
72 for (y
= 0; y
< height
; y
++) {
73 for (x
= 0; x
< (width
+ 7) / 8; x
++)
79 cairo_set_source_rgb (cr
, 1, 0, 0); /* red */
80 cairo_mask_surface (cr
, surface
, 0, 0);
81 cairo_surface_destroy (surface
);
83 surface
= cairo_image_surface_create (CAIRO_FORMAT_A1
, 20, 64000);
84 data
= cairo_image_surface_get_data (surface
);
86 int stride
= cairo_image_surface_get_stride (surface
);
87 int width
= cairo_image_surface_get_width (surface
);
88 int height
= cairo_image_surface_get_height (surface
);
91 for (y
= 0; y
< height
; y
++) {
92 for (x
= 0; x
< (width
+ 7) / 8; x
++)
98 cairo_set_source_rgb (cr
, 0, 1, 0); /* green */
99 cairo_mask_surface (cr
, surface
, 0, 0);
100 cairo_surface_destroy (surface
);
102 return CAIRO_TEST_SUCCESS
;
108 return cairo_test (&test
);