From 5bc1dede817b072cd2ff8d04e2b257a551067747 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Thu, 5 May 2011 17:25:34 -0400 Subject: [PATCH] tests: Add tests for large rounded corners https://bugzilla.gnome.org/show_bug.cgi?id=649513 --- tests/interactive/border-radius.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/interactive/border-radius.js b/tests/interactive/border-radius.js index 670eaf004..714dc711f 100644 --- a/tests/interactive/border-radius.js +++ b/tests/interactive/border-radius.js @@ -51,6 +51,13 @@ addTestCase(" 5px 10px 15px 0px", true); addTestCase("10px 15px 0px 5px", true); addTestCase("15px 0px 5px 10px", true); +// border-radius reduction +// these should all take the cairo fallback, +// so don't bother testing w/ or w/out gradients. +addTestCase("200px 200px 200px 200px", false); +addTestCase("200px 200px 0px 200px", false); +addTestCase("999px 0px 999px 0px", false); + stage.show(); Clutter.main(); stage.destroy();