gtk/tests/reftests/bad-color-names.css
Benjamin Otte 0a82b79012 reftests: Add a reftest for color resolving errors
This checks the fixes in the last two commits.
2013-03-28 23:18:59 +01:00

12 lines
262 B
CSS

@define-color nonexistant @idonotexist;
@define-color self @self;
@define-color cycle @cycle1;
@define-color cycle1 @cycle2;
@define-color cycle2 @cycle1;
.background {
background: linear-gradient(to bottom, @nonexistant, @self, @cycle, @undefinedcolor);
}