1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

CSS: Move /* #define DEBUG_CSS */ to stylesheet.h.

That's where src/document/css/README says it should be.
This commit is contained in:
Kalle Olavi Niemitalo 2007-07-15 15:45:28 +03:00 committed by Witold Filipczyk
parent 4cf3130b53
commit 83d870a6d9
3 changed files with 2 additions and 4 deletions

View File

@ -27,8 +27,6 @@
/* XXX: Some strange dependency makes it necessary to this include last. */
#include "document/html/internal.h"
/* #define DEBUG_CSS */
/* TODO: A way to disable CSS completely, PLUS a way to stop various property
* groups from taking effect. (Ie. way to turn out effect of 'display: none'

View File

@ -21,8 +21,6 @@
#include "util/memory.h"
#include "util/string.h"
/* #define DEBUG_CSS */
void
css_parse_properties(struct list_head *props, struct scanner *scanner)

View File

@ -4,6 +4,8 @@
#include "util/lists.h"
/* #define DEBUG_CSS */
/* TODO: We need a memory efficient and fast way to define how properties
* cascade. What we are interested in is making it fast and easy to find
* all properties we need.