summaryrefslogtreecommitdiff
path: root/testsuite/gtk/cssprovider.c
Commit message (Collapse)AuthorAgeFilesLines
* cssprovider test: Remove style property test caseTimm Bäder2017-07-191-30/+0
| | | | | | It's getting harder and harder to find a dummy style property to use here, so remove the test case since style properties should be going away soon anyway.
* Update callersMatthias Clasen2017-01-191-1/+1
| | | | Adapt all our tests and examples to the new initialization api.
* testsuite/cssprovider: Use actual existing style propertyTimm Bäder2017-01-081-4/+4
| | | | | All the style properties in GtkTreeView are gone, so use one from GtkScrollbar for now.
* Fix unittestsTimm Bäder2016-10-181-4/+4
|
* cssprovider: Remove GError out argument from load functionsBenjamin Otte2016-10-171-3/+3
| | | | People should use the GtkCssProvider::parsing-error signal instead.
* ui: Don't unnecessarily set GtkEntry:invisible-charTimm Bäder2016-10-161-4/+4
|
* widget: Remove cursor-aspect-ratio/window-dragging style propertiesTimm Bäder2016-10-161-4/+4
| | | | | | | And replaces its usages in GtkTextView/GtkStyleContext with a hard-coded 0.04 which was the default value for cursor-aspect-ratio. Also remove the public gtk_draw_insertion_cursor which used draw_insertion_cursor which in turn looked up cursor-aspect-ratio
* widget: Remove deprecated style propertiesTimm Bäder2016-10-161-2/+2
|
* cssprovider: Have a section on import errorBenjamin Otte2015-11-161-0/+13
| | | | | | | | | | | | When loading a nonexisting CSS file using gtk_css_provider_load_from_file() or gtk_css_provider_load_from_path() we would emit the error using a NULL scanner. Don't do that, because we'll have a NULL section in that case and error handlers don't like that. Testcase attached. https://bugzilla.redhat.com/show_bug.cgi?id=1277959
* cssprovider: Have a section when parsing style propertiesBenjamin Otte2015-10-281-0/+63
Signal handlers expect a section to be present, so provide them with one. New testcase included. https://bugzilla.gnome.org/show_bug.cgi?id=757240