2003-06-30 16:44:03 +04:00
|
|
|
/*
|
2004-02-14 02:07:42 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2004-08-02 01:56:47 +04:00
|
|
|
* Copyright 2004 John M Bell <jmb202@ecs.soton.ac.uk>
|
2008-02-25 19:37:48 +03:00
|
|
|
* Copyright 2008 Michael Drake <tlsa@netsurf-browser.org>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-04-04 19:19:32 +04:00
|
|
|
*/
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/** \file
|
|
|
|
* CSS handling (implementation).
|
|
|
|
*
|
|
|
|
* See CSS 2.1 chapter 5 for the terms used here.
|
|
|
|
*
|
|
|
|
* CSS style sheets are stored as a hash table mapping selectors to styles.
|
|
|
|
* Selectors are hashed by the <em>type selector</em> of the last <em>simple
|
|
|
|
* selector</em> in the selector. The <em>universal selector</em> is hashed to
|
|
|
|
* chain 0.
|
|
|
|
*
|
|
|
|
* A <em>simple selector</em> is a struct css_selector with type
|
|
|
|
* CSS_SELECTOR_ELEMENT. The data field is the <em>type selector</em>, or 0 for
|
|
|
|
* the <em>universal selector</em>. Any <em>attribute selectors</em>, <em>ID
|
|
|
|
* selectors</em>, or <em>pseudo-classes</em> form a linked list of
|
|
|
|
* css_selector hanging from detail.
|
|
|
|
*
|
|
|
|
* A <em>selector</em> is a linked list by the combiner field of these simple
|
|
|
|
* selectors, in reverse order that they appear in the concrete syntax. The last
|
|
|
|
* simple selector is first, then the previous one is linked at combiner and has
|
|
|
|
* relationship comb to the last, etc.
|
|
|
|
*
|
|
|
|
* Selectors are then linked in each hash chain by next, in order of increasing
|
|
|
|
* specificity.
|
|
|
|
*
|
|
|
|
* As an example, the stylesheet
|
|
|
|
* \code
|
|
|
|
* th { [1] }
|
|
|
|
* div#id1 > h4.class1 { [2] }
|
|
|
|
* center * { [3] } \endcode
|
|
|
|
*
|
|
|
|
* would result in a struct css_stylesheet (content::data.css.css) like this
|
|
|
|
* \dot
|
|
|
|
* digraph example {
|
|
|
|
* node [shape=record, fontname=Helvetica, fontsize=9];
|
|
|
|
* edge [fontname=Helvetica, fontsize=9];
|
|
|
|
* css -> n0 [label="rule[0]"];
|
|
|
|
* css -> n2 [label="rule[29]"];
|
|
|
|
*
|
|
|
|
* n0 [label="css_selector\ntype CSS_SELECTOR_ELEMENT\ldata 0\lcomb CSS_COMB_ANCESTOR\lspecificity 2\l"];
|
|
|
|
* n0 -> n1 [label="combiner"];
|
|
|
|
* n0 -> n0style [label="style"]; n0style [label="[3]"];
|
|
|
|
*
|
|
|
|
* n1 [label="css_selector\ntype CSS_SELECTOR_ELEMENT\ldata \"center\"\lcomb CSS_COMB_NONE\lspecificity 1\l"];
|
|
|
|
*
|
|
|
|
* n2 [label="css_selector\ntype CSS_SELECTOR_ELEMENT\ldata \"th\"\lcomb CSS_COMB_NONE\lspecificity 1\l"];
|
|
|
|
* n2 -> n3 [label="next"];
|
|
|
|
* n2 -> n2style [label="style"]; n2style [label="[1]"];
|
|
|
|
*
|
|
|
|
* n3 [label="css_selector\ntype CSS_SELECTOR_ELEMENT\ldata \"h4\"\lcomb CSS_COMB_PARENT\lspecificity 0x10102\l"];
|
|
|
|
* n3 -> n4 [label="detail"];
|
|
|
|
* n3 -> n5 [label="combiner"];
|
|
|
|
* n3 -> n3style [label="style"]; n3style [label="[2]"];
|
|
|
|
*
|
|
|
|
* n4 [label="css_selector\ntype CSS_SELECTOR_CLASS\ldata \"class1\"\lcomb CSS_COMB_NONE\lspecificity 0x100\l"];
|
|
|
|
*
|
|
|
|
* n5 [label="css_selector\ntype CSS_SELECTOR_ELEMENT\ldata \"div\"\lcomb CSS_COMB_NONE\lspecificity 0x10001\l"];
|
|
|
|
* n5 -> n6 [label="detail"];
|
|
|
|
*
|
|
|
|
* n6 [label="css_selector\ntype CSS_SELECTOR_ID\ldata \"#id1\"\lcomb CSS_COMB_NONE\lspecificity 0x10000\l"];
|
|
|
|
* }
|
|
|
|
* \enddot
|
|
|
|
*
|
|
|
|
* (any fields not shown are 0). In this example the first two rules happen to
|
|
|
|
* have hashed to the same value.
|
|
|
|
*/
|
|
|
|
|
2005-01-02 17:42:16 +03:00
|
|
|
#define _GNU_SOURCE /* for strndup */
|
2003-04-04 19:19:32 +04:00
|
|
|
#include <assert.h>
|
2005-08-21 16:04:18 +04:00
|
|
|
#include <stdint.h>
|
2003-04-04 19:19:32 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#define CSS_INTERNALS
|
2003-04-06 22:09:34 +04:00
|
|
|
#undef NDEBUG
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/config.h"
|
|
|
|
#include "content/content.h"
|
|
|
|
#include "content/fetch.h"
|
|
|
|
#include "content/fetchcache.h"
|
|
|
|
#include "css/css.h"
|
|
|
|
#include "css/parser.h"
|
|
|
|
#include "desktop/gui.h"
|
2008-02-02 03:22:08 +03:00
|
|
|
#include "desktop/options.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/messages.h"
|
|
|
|
#include "utils/talloc.h"
|
|
|
|
#include "utils/url.h"
|
|
|
|
#include "utils/utils.h"
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
|
|
|
struct css_working_stylesheet {
|
|
|
|
struct css_selector **rule[HASH_SIZE];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-16 03:48:47 +03:00
|
|
|
static void css_deep_free_style(struct css_style *style);
|
2003-07-05 01:18:24 +04:00
|
|
|
static void css_atimport_callback(content_msg msg, struct content *css,
|
2005-08-21 16:04:18 +04:00
|
|
|
intptr_t p1, intptr_t p2, union content_msg_data data);
|
2005-05-22 03:30:19 +04:00
|
|
|
static bool css_working_list_imports(struct content **import,
|
|
|
|
unsigned int import_count,
|
|
|
|
struct content ***css, unsigned int *css_count);
|
|
|
|
static bool css_working_merge_chains(
|
|
|
|
struct css_working_stylesheet *working_stylesheet,
|
|
|
|
struct content **css, unsigned int css_count,
|
|
|
|
unsigned int chain,
|
|
|
|
struct css_selector **rule);
|
2004-05-01 21:48:38 +04:00
|
|
|
static bool css_match_rule(struct css_selector *rule, xmlNode *element);
|
|
|
|
static bool css_match_detail(const struct css_selector *detail,
|
|
|
|
xmlNode *element);
|
2004-08-05 05:57:14 +04:00
|
|
|
static bool css_match_first_child(const struct css_selector *detail,
|
|
|
|
xmlNode *element);
|
2004-05-01 21:48:38 +04:00
|
|
|
static void css_dump_length(const struct css_length * const length);
|
|
|
|
static void css_dump_selector(const struct css_selector *r);
|
2008-01-31 04:47:57 +03:00
|
|
|
static void css_dump_working_stylesheet(
|
|
|
|
const struct css_working_stylesheet *ws);
|
2008-02-25 19:37:48 +03:00
|
|
|
static void css_importance_reset(struct css_importance *i);
|
2004-05-01 21:48:38 +04:00
|
|
|
|
|
|
|
/** Default style for a document. These are the 'Initial values' from the
|
|
|
|
* spec. */
|
2003-04-04 19:19:32 +04:00
|
|
|
const struct css_style css_base_style = {
|
2004-06-09 23:55:06 +04:00
|
|
|
CSS_BACKGROUND_ATTACHMENT_SCROLL,
|
2004-08-01 18:13:47 +04:00
|
|
|
0xffffff,
|
2004-06-09 23:55:06 +04:00
|
|
|
{ CSS_BACKGROUND_IMAGE_NONE, 0 },
|
|
|
|
{ { CSS_BACKGROUND_POSITION_PERCENT, { 0.0 } },
|
|
|
|
{ CSS_BACKGROUND_POSITION_PERCENT, { 0.0 } } },
|
|
|
|
CSS_BACKGROUND_REPEAT_REPEAT,
|
2004-02-02 03:22:59 +03:00
|
|
|
{ { 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE },
|
|
|
|
{ 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE },
|
|
|
|
{ 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE },
|
|
|
|
{ 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE } },
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_BORDER_COLLAPSE_SEPARATE,
|
|
|
|
{ CSS_BORDER_SPACING_LENGTH,
|
|
|
|
{ 0, CSS_UNIT_PX }, { 0, CSS_UNIT_PX } },
|
|
|
|
CSS_CAPTION_SIDE_TOP,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_CLEAR_NONE,
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_CLIP_AUTO, { { CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } } } },
|
2003-04-04 19:19:32 +04:00
|
|
|
0x000000,
|
2005-01-17 00:39:21 +03:00
|
|
|
{ CSS_CONTENT_NORMAL, 0 },
|
|
|
|
{ CSS_COUNTER_RESET_NONE, 0 },
|
2005-02-20 02:40:15 +03:00
|
|
|
{ CSS_COUNTER_INCREMENT_NONE, 0 },
|
2004-04-03 03:12:26 +04:00
|
|
|
CSS_CURSOR_AUTO,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_DIRECTION_LTR,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_DISPLAY_BLOCK,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_EMPTY_CELLS_SHOW,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_FLOAT_NONE,
|
2006-01-03 02:31:29 +03:00
|
|
|
CSS_FONT_FAMILY_SANS_SERIF,
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_FONT_SIZE_LENGTH, { { 10, CSS_UNIT_PT } } },
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_FONT_STYLE_NORMAL,
|
2004-01-31 01:28:32 +03:00
|
|
|
CSS_FONT_VARIANT_NORMAL,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_FONT_WEIGHT_NORMAL,
|
2003-04-04 19:19:32 +04:00
|
|
|
{ CSS_HEIGHT_AUTO, { 1, CSS_UNIT_EM } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_LETTER_SPACING_NORMAL, { 0, CSS_UNIT_PX } },
|
2007-12-09 14:13:25 +03:00
|
|
|
{ CSS_LINE_HEIGHT_ABSOLUTE, { 1.33 } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_LIST_STYLE_IMAGE_NONE, 0 },
|
|
|
|
CSS_LIST_STYLE_POSITION_OUTSIDE,
|
|
|
|
CSS_LIST_STYLE_TYPE_DISC,
|
2004-02-02 03:22:59 +03:00
|
|
|
{ { CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_MAX_HEIGHT_NONE, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MAX_WIDTH_NONE, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MIN_HEIGHT_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MIN_WIDTH_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_ORPHANS_INTEGER, 2 },
|
|
|
|
{ { CSS_OUTLINE_COLOR_INVERT, 0x000000 },
|
|
|
|
{ CSS_BORDER_WIDTH_LENGTH, { 2, CSS_UNIT_PX } },
|
|
|
|
CSS_BORDER_STYLE_NONE },
|
2004-07-17 00:22:31 +04:00
|
|
|
CSS_OVERFLOW_VISIBLE,
|
2005-04-09 13:47:37 +04:00
|
|
|
{ { CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_PAGE_BREAK_AFTER_AUTO,
|
|
|
|
CSS_PAGE_BREAK_BEFORE_AUTO,
|
|
|
|
CSS_PAGE_BREAK_INSIDE_AUTO,
|
2004-08-02 01:56:47 +04:00
|
|
|
{ { CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_POSITION_STATIC,
|
|
|
|
CSS_TABLE_LAYOUT_AUTO,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_TEXT_ALIGN_LEFT,
|
2003-10-18 03:47:13 +04:00
|
|
|
CSS_TEXT_DECORATION_NONE,
|
2004-02-02 01:42:40 +03:00
|
|
|
{ CSS_TEXT_INDENT_LENGTH, { { 0, CSS_UNIT_EM } } },
|
2004-02-01 00:18:44 +03:00
|
|
|
CSS_TEXT_TRANSFORM_NONE,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_UNICODE_BIDI_NORMAL,
|
|
|
|
{ CSS_VERTICAL_ALIGN_BASELINE, { { 0, CSS_UNIT_PX } } },
|
2003-10-10 22:13:36 +04:00
|
|
|
CSS_VISIBILITY_VISIBLE,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_WHITE_SPACE_NORMAL,
|
|
|
|
{ CSS_WIDOWS_INTEGER, 2 },
|
2003-10-08 01:34:27 +04:00
|
|
|
{ CSS_WIDTH_AUTO, { { 1, CSS_UNIT_EM } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_WORD_SPACING_NORMAL, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_Z_INDEX_AUTO, 0 }
|
2003-04-04 19:19:32 +04:00
|
|
|
};
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/** Style with no values set. */
|
2003-04-04 19:19:32 +04:00
|
|
|
const struct css_style css_empty_style = {
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_BACKGROUND_ATTACHMENT_NOT_SET,
|
|
|
|
CSS_COLOR_NOT_SET,
|
|
|
|
{ CSS_BACKGROUND_IMAGE_NOT_SET, 0 },
|
|
|
|
{ { CSS_BACKGROUND_POSITION_NOT_SET, { 0.0 } },
|
|
|
|
{ CSS_BACKGROUND_POSITION_NOT_SET, { 0.0 } } },
|
|
|
|
CSS_BACKGROUND_REPEAT_NOT_SET,
|
|
|
|
{ { CSS_COLOR_NOT_SET, { CSS_BORDER_WIDTH_NOT_SET,
|
|
|
|
{ 0, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NOT_SET },
|
|
|
|
{ CSS_COLOR_NOT_SET, { CSS_BORDER_WIDTH_NOT_SET,
|
|
|
|
{ 0, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NOT_SET },
|
|
|
|
{ CSS_COLOR_NOT_SET, { CSS_BORDER_WIDTH_NOT_SET,
|
|
|
|
{ 0, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NOT_SET },
|
|
|
|
{ CSS_COLOR_NOT_SET, { CSS_BORDER_WIDTH_NOT_SET,
|
|
|
|
{ 0, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NOT_SET } },
|
|
|
|
CSS_BORDER_COLLAPSE_NOT_SET,
|
|
|
|
{ CSS_BORDER_SPACING_NOT_SET,
|
2004-08-01 18:13:47 +04:00
|
|
|
{ 0, CSS_UNIT_PX }, { 0, CSS_UNIT_PX } },
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_CAPTION_SIDE_NOT_SET,
|
|
|
|
CSS_CLEAR_NOT_SET,
|
|
|
|
{ CSS_CLIP_NOT_SET, { { CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } } } },
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_COLOR_NOT_SET,
|
2005-01-17 00:39:21 +03:00
|
|
|
{ CSS_CONTENT_NOT_SET, 0 },
|
|
|
|
{ CSS_COUNTER_RESET_NOT_SET, 0 },
|
2005-02-20 02:40:15 +03:00
|
|
|
{ CSS_COUNTER_INCREMENT_NOT_SET, 0 },
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_CURSOR_NOT_SET,
|
|
|
|
CSS_DIRECTION_NOT_SET,
|
|
|
|
CSS_DISPLAY_NOT_SET,
|
|
|
|
CSS_EMPTY_CELLS_NOT_SET,
|
|
|
|
CSS_FLOAT_NOT_SET,
|
|
|
|
CSS_FONT_FAMILY_NOT_SET,
|
|
|
|
{ CSS_FONT_SIZE_NOT_SET, { { 1, CSS_UNIT_PT } } },
|
|
|
|
CSS_FONT_STYLE_NOT_SET,
|
|
|
|
CSS_FONT_VARIANT_NOT_SET,
|
|
|
|
CSS_FONT_WEIGHT_NOT_SET,
|
|
|
|
{ CSS_HEIGHT_NOT_SET, { 1, CSS_UNIT_EM } },
|
|
|
|
{ CSS_LETTER_SPACING_NOT_SET, { 0, CSS_UNIT_PX } },
|
2007-12-09 14:13:25 +03:00
|
|
|
{ CSS_LINE_HEIGHT_NOT_SET, { 1.33 } },
|
2005-01-11 22:39:49 +03:00
|
|
|
{ CSS_LIST_STYLE_IMAGE_NOT_SET, 0 },
|
|
|
|
CSS_LIST_STYLE_POSITION_NOT_SET,
|
|
|
|
CSS_LIST_STYLE_TYPE_NOT_SET,
|
|
|
|
{ { CSS_MARGIN_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_NOT_SET, { { 0, CSS_UNIT_PX } } } },
|
|
|
|
{ CSS_MAX_HEIGHT_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MAX_WIDTH_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MIN_HEIGHT_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MIN_WIDTH_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_ORPHANS_NOT_SET, 0 },
|
|
|
|
{ { CSS_OUTLINE_COLOR_NOT_SET, CSS_COLOR_NOT_SET },
|
|
|
|
{ CSS_BORDER_WIDTH_NOT_SET, { 0, CSS_UNIT_PX } },
|
|
|
|
CSS_BORDER_STYLE_NOT_SET },
|
|
|
|
CSS_OVERFLOW_NOT_SET,
|
2005-04-09 13:47:37 +04:00
|
|
|
{ { CSS_PADDING_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_NOT_SET, { { 0, CSS_UNIT_PX } } } },
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_PAGE_BREAK_AFTER_NOT_SET,
|
|
|
|
CSS_PAGE_BREAK_BEFORE_NOT_SET,
|
|
|
|
CSS_PAGE_BREAK_INSIDE_NOT_SET,
|
|
|
|
{ { CSS_POS_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_NOT_SET, { { 0, CSS_UNIT_PX } } } },
|
|
|
|
CSS_POSITION_NOT_SET,
|
|
|
|
CSS_TABLE_LAYOUT_NOT_SET,
|
|
|
|
CSS_TEXT_ALIGN_NOT_SET,
|
|
|
|
CSS_TEXT_DECORATION_NOT_SET,
|
|
|
|
{ CSS_TEXT_INDENT_NOT_SET, { { 0, CSS_UNIT_EM } } },
|
|
|
|
CSS_TEXT_TRANSFORM_NOT_SET,
|
|
|
|
CSS_UNICODE_BIDI_NOT_SET,
|
|
|
|
{ CSS_VERTICAL_ALIGN_NOT_SET, { { 0, CSS_UNIT_PX } } },
|
|
|
|
CSS_VISIBILITY_NOT_SET,
|
|
|
|
CSS_WHITE_SPACE_NOT_SET,
|
|
|
|
{ CSS_WIDOWS_NOT_SET, 0 },
|
|
|
|
{ CSS_WIDTH_NOT_SET, { { 1, CSS_UNIT_EM } } },
|
|
|
|
{ CSS_WORD_SPACING_NOT_SET, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_Z_INDEX_NOT_SET, 0 }
|
2003-04-04 19:19:32 +04:00
|
|
|
};
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/** Default style for an element. These should be INHERIT if 'Inherited' is yes,
|
|
|
|
* and the 'Initial value' otherwise. */
|
2003-04-04 19:19:32 +04:00
|
|
|
const struct css_style css_blank_style = {
|
2004-06-09 23:55:06 +04:00
|
|
|
CSS_BACKGROUND_ATTACHMENT_SCROLL,
|
2004-08-01 18:13:47 +04:00
|
|
|
TRANSPARENT,
|
2004-06-09 23:55:06 +04:00
|
|
|
{ CSS_BACKGROUND_IMAGE_NONE, 0 },
|
|
|
|
{ { CSS_BACKGROUND_POSITION_PERCENT, { 0.0 } },
|
|
|
|
{ CSS_BACKGROUND_POSITION_PERCENT, { 0.0 } } },
|
|
|
|
CSS_BACKGROUND_REPEAT_REPEAT,
|
2004-02-02 03:22:59 +03:00
|
|
|
{ { 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
2005-07-31 19:55:36 +04:00
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE },
|
2004-02-02 03:22:59 +03:00
|
|
|
{ 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
2005-07-31 19:55:36 +04:00
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE },
|
2004-02-02 03:22:59 +03:00
|
|
|
{ 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
2005-07-31 19:55:36 +04:00
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE },
|
2004-02-02 03:22:59 +03:00
|
|
|
{ 0x000000, { CSS_BORDER_WIDTH_LENGTH,
|
2005-07-31 19:55:36 +04:00
|
|
|
{ 2, CSS_UNIT_PX } }, CSS_BORDER_STYLE_NONE } },
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_BORDER_COLLAPSE_INHERIT,
|
|
|
|
{ CSS_BORDER_SPACING_INHERIT,
|
|
|
|
{ 0, CSS_UNIT_PX }, { 0, CSS_UNIT_PX } },
|
|
|
|
CSS_CAPTION_SIDE_INHERIT,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_CLEAR_NONE,
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_CLIP_AUTO, { { CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_CLIP_RECT_AUTO, { 0, CSS_UNIT_PX } } } },
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_COLOR_INHERIT,
|
2005-01-17 00:39:21 +03:00
|
|
|
{ CSS_CONTENT_NORMAL, 0 },
|
|
|
|
{ CSS_COUNTER_RESET_NONE, 0 },
|
2005-02-20 02:40:15 +03:00
|
|
|
{ CSS_COUNTER_INCREMENT_NONE, 0 },
|
2004-04-03 03:12:26 +04:00
|
|
|
CSS_CURSOR_INHERIT,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_DIRECTION_INHERIT,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_DISPLAY_INLINE,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_EMPTY_CELLS_INHERIT,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_FLOAT_NONE,
|
2004-01-29 00:48:10 +03:00
|
|
|
CSS_FONT_FAMILY_INHERIT,
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_FONT_SIZE_INHERIT, { { 1, CSS_UNIT_EM } } },
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_FONT_STYLE_INHERIT,
|
2004-01-31 01:28:32 +03:00
|
|
|
CSS_FONT_VARIANT_INHERIT,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_FONT_WEIGHT_INHERIT,
|
2003-04-04 19:19:32 +04:00
|
|
|
{ CSS_HEIGHT_AUTO, { 1, CSS_UNIT_EM } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_LETTER_SPACING_INHERIT, { 0, CSS_UNIT_PX } },
|
2007-12-09 14:13:25 +03:00
|
|
|
{ CSS_LINE_HEIGHT_INHERIT, { 1.33 } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_LIST_STYLE_IMAGE_INHERIT, 0 },
|
|
|
|
CSS_LIST_STYLE_POSITION_INHERIT,
|
|
|
|
CSS_LIST_STYLE_TYPE_INHERIT,
|
2004-02-02 03:22:59 +03:00
|
|
|
{ { CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MARGIN_LENGTH, { { 0, CSS_UNIT_PX } } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_MAX_HEIGHT_NONE, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MAX_WIDTH_NONE, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MIN_HEIGHT_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_MIN_WIDTH_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_ORPHANS_INHERIT, 0 },
|
|
|
|
{ { CSS_OUTLINE_COLOR_INVERT, 0x000000 },
|
|
|
|
{ CSS_BORDER_WIDTH_LENGTH, { 2, CSS_UNIT_PX } },
|
|
|
|
CSS_BORDER_STYLE_NONE },
|
2004-07-17 00:22:31 +04:00
|
|
|
CSS_OVERFLOW_VISIBLE,
|
2005-04-09 13:47:37 +04:00
|
|
|
{ { CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_PADDING_LENGTH, { { 0, CSS_UNIT_PX } } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_PAGE_BREAK_AFTER_AUTO,
|
|
|
|
CSS_PAGE_BREAK_BEFORE_AUTO,
|
|
|
|
CSS_PAGE_BREAK_INSIDE_INHERIT,
|
2004-08-02 01:56:47 +04:00
|
|
|
{ { CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } },
|
|
|
|
{ CSS_POS_AUTO, { { 0, CSS_UNIT_PX } } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_POSITION_STATIC,
|
|
|
|
CSS_TABLE_LAYOUT_AUTO,
|
2003-04-04 19:19:32 +04:00
|
|
|
CSS_TEXT_ALIGN_INHERIT,
|
2005-05-23 01:50:14 +04:00
|
|
|
CSS_TEXT_DECORATION_NONE,
|
2004-02-02 01:42:40 +03:00
|
|
|
{ CSS_TEXT_INDENT_INHERIT, { { 0, CSS_UNIT_EM } } },
|
2004-02-01 00:18:44 +03:00
|
|
|
CSS_TEXT_TRANSFORM_INHERIT,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_UNICODE_BIDI_NORMAL,
|
|
|
|
{ CSS_VERTICAL_ALIGN_BASELINE, { { 0, CSS_UNIT_PX } } },
|
2003-10-10 22:13:36 +04:00
|
|
|
CSS_VISIBILITY_INHERIT,
|
2004-08-01 18:13:47 +04:00
|
|
|
CSS_WHITE_SPACE_INHERIT,
|
|
|
|
{ CSS_WIDOWS_INHERIT, 0 },
|
2003-10-08 01:34:27 +04:00
|
|
|
{ CSS_WIDTH_AUTO, { { 1, CSS_UNIT_EM } } },
|
2004-08-01 18:13:47 +04:00
|
|
|
{ CSS_WORD_SPACING_INHERIT, { 0, CSS_UNIT_PX } },
|
|
|
|
{ CSS_Z_INDEX_AUTO, 0 }
|
2003-04-04 19:19:32 +04:00
|
|
|
};
|
|
|
|
|
2007-08-19 14:08:49 +04:00
|
|
|
/** Dots per inch for the display device.
|
|
|
|
*
|
|
|
|
* This is the number of pixels per inch of the display device.
|
|
|
|
* This variable should be treated as constant during the runtime of
|
|
|
|
* the program unless the core can be persuaded to re-layout fully
|
|
|
|
* on change.
|
|
|
|
*
|
|
|
|
* We default to 90.0 because RISC OS defaults to 90.0 dpi.
|
|
|
|
*/
|
|
|
|
float css_screen_dpi = 90.0;
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Convert a CONTENT_CSS for use.
|
|
|
|
*/
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool css_convert(struct content *c, int width, int height)
|
2003-04-04 19:19:32 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
unsigned char *source_data;
|
|
|
|
unsigned char *current, *end, *token_text;
|
2003-04-05 19:35:55 +04:00
|
|
|
unsigned int i;
|
2004-04-14 16:53:14 +04:00
|
|
|
int token;
|
|
|
|
void *parser;
|
2005-08-01 02:06:03 +04:00
|
|
|
struct css_parser_params param = {false, c, 0, false, false, false};
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_parser_token token_data;
|
2004-06-11 00:41:26 +04:00
|
|
|
union content_msg_data msg_data;
|
2004-04-14 16:53:14 +04:00
|
|
|
|
|
|
|
c->data.css.css = malloc(sizeof *c->data.css.css);
|
|
|
|
parser = css_parser_Alloc(malloc);
|
2007-05-02 07:17:19 +04:00
|
|
|
source_data = (unsigned char *) talloc_realloc(c, c->source_data, char,
|
2005-04-03 18:17:05 +04:00
|
|
|
c->source_size + 10);
|
2004-04-14 16:53:14 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
if (!c->data.css.css || !parser || !source_data) {
|
2004-04-14 16:53:14 +04:00
|
|
|
free(c->data.css.css);
|
2004-05-01 21:48:38 +04:00
|
|
|
css_parser_Free(parser, free);
|
2004-06-11 00:41:26 +04:00
|
|
|
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
return false;
|
2004-04-14 16:53:14 +04:00
|
|
|
}
|
|
|
|
|
2003-04-05 19:35:55 +04:00
|
|
|
for (i = 0; i != HASH_SIZE; i++)
|
2003-04-06 22:09:34 +04:00
|
|
|
c->data.css.css->rule[i] = 0;
|
|
|
|
c->data.css.import_count = 0;
|
2004-04-14 16:53:14 +04:00
|
|
|
c->data.css.import_content = 0;
|
2005-05-22 03:30:19 +04:00
|
|
|
c->data.css.origin = CSS_ORIGIN_UA;
|
2003-04-06 22:09:34 +04:00
|
|
|
c->active = 0;
|
2007-05-02 07:17:19 +04:00
|
|
|
c->source_data = (char *) source_data;
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
for (i = 0; i != 10; i++)
|
|
|
|
source_data[c->source_size + i] = 0;
|
|
|
|
|
|
|
|
current = source_data;
|
|
|
|
end = source_data + c->source_size;
|
2004-08-14 18:30:12 +04:00
|
|
|
while (current < end
|
2005-01-02 17:42:16 +03:00
|
|
|
&& (token = css_tokenise(¤t, end + 10,
|
|
|
|
&token_text))) {
|
2007-05-02 07:17:19 +04:00
|
|
|
token_data.text = (char *) token_text;
|
2004-05-01 21:48:38 +04:00
|
|
|
token_data.length = current - token_text;
|
|
|
|
css_parser_(parser, token, token_data, ¶m);
|
2003-12-26 03:17:55 +03:00
|
|
|
if (param.syntax_error) {
|
2007-05-02 07:17:19 +04:00
|
|
|
LOG(("syntax error near offset %li (%s)",
|
|
|
|
(unsigned long) (token_text - source_data),
|
|
|
|
c->url));
|
2003-12-26 03:17:55 +03:00
|
|
|
param.syntax_error = false;
|
2004-05-01 21:48:38 +04:00
|
|
|
} else if (param.memory_error) {
|
|
|
|
LOG(("out of memory"));
|
|
|
|
break;
|
2003-12-26 03:17:55 +03:00
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
css_parser_(parser, 0, token_data, ¶m);
|
2004-04-14 16:53:14 +04:00
|
|
|
css_parser_Free(parser, free);
|
2003-10-17 21:39:29 +04:00
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
if (param.memory_error) {
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
return false;
|
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
|
2003-12-26 03:17:55 +03:00
|
|
|
/*css_dump_stylesheet(c->data.css.css);*/
|
2003-09-28 03:36:34 +04:00
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
/* complete fetch of any imported stylesheets */
|
|
|
|
while (c->active != 0) {
|
|
|
|
fetch_poll();
|
|
|
|
gui_multitask();
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
c->status = CONTENT_STATUS_DONE;
|
2004-06-11 00:41:26 +04:00
|
|
|
return true;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Destroy a CONTENT_CSS and free all resources it owns.
|
|
|
|
*/
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
void css_destroy(struct content *c)
|
|
|
|
{
|
2003-04-06 22:09:34 +04:00
|
|
|
unsigned int i;
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_selector *r;
|
2003-10-08 01:34:27 +04:00
|
|
|
|
2007-03-18 23:19:13 +03:00
|
|
|
if (c->data.css.css) {
|
|
|
|
for (i = 0; i != HASH_SIZE; i++) {
|
|
|
|
for (r = c->data.css.css->rule[i]; r != 0;
|
|
|
|
r = r->next) {
|
|
|
|
css_deep_free_style(r->style);
|
|
|
|
}
|
|
|
|
css_free_selector(c->data.css.css->rule[i]);
|
2004-06-09 23:55:06 +04:00
|
|
|
}
|
2007-03-18 23:19:13 +03:00
|
|
|
free(c->data.css.css);
|
2003-04-06 22:09:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* imported stylesheets */
|
|
|
|
for (i = 0; i != c->data.css.import_count; i++)
|
2003-04-10 01:57:09 +04:00
|
|
|
if (c->data.css.import_content[i] != 0) {
|
2003-06-17 23:24:21 +04:00
|
|
|
content_remove_user(c->data.css.import_content[i],
|
2005-08-21 16:04:18 +04:00
|
|
|
css_atimport_callback, (intptr_t) c, i);
|
2003-04-10 01:57:09 +04:00
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
free(c->data.css.import_content);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the origin of a stylesheet.
|
|
|
|
*
|
|
|
|
* \param c content of type CONTENT_CSS
|
|
|
|
* \param origin new origin
|
|
|
|
*
|
|
|
|
* This may only be called once per stylesheet.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_set_origin(struct content *c, css_origin origin)
|
|
|
|
{
|
|
|
|
unsigned int chain, i;
|
|
|
|
unsigned long specificity = 0;
|
|
|
|
struct css_selector *selector;
|
|
|
|
|
|
|
|
assert(c->type == CONTENT_CSS);
|
|
|
|
|
|
|
|
if (origin == c->data.css.origin)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (origin)
|
|
|
|
{
|
|
|
|
case CSS_ORIGIN_AUTHOR: specificity = CSS_SPECIFICITY_AUTHOR; break;
|
|
|
|
case CSS_ORIGIN_USER: specificity = CSS_SPECIFICITY_USER; break;
|
|
|
|
case CSS_ORIGIN_UA: specificity = CSS_SPECIFICITY_UA; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (chain = 0; chain != HASH_SIZE; chain++)
|
|
|
|
for (selector = c->data.css.css->rule[chain];
|
|
|
|
selector;
|
|
|
|
selector = selector->next)
|
|
|
|
selector->specificity += specificity;
|
|
|
|
c->data.css.origin = origin;
|
|
|
|
|
|
|
|
for (i = 0; i != c->data.css.import_count; i++)
|
|
|
|
if (c->data.css.import_content[i])
|
|
|
|
css_set_origin(c->data.css.import_content[i], origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-16 03:03:45 +03:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Duplicate a CSS style struct.
|
2005-01-16 03:03:45 +03:00
|
|
|
*
|
|
|
|
* \param style The style to duplicate
|
|
|
|
* \return The duplicate style, or NULL if out of memory.
|
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-16 03:03:45 +03:00
|
|
|
struct css_style *css_duplicate_style(const struct css_style * const style)
|
|
|
|
{
|
|
|
|
struct css_style *dup;
|
|
|
|
|
|
|
|
assert(style);
|
|
|
|
|
|
|
|
/* create duplicated style */
|
2005-05-22 03:30:19 +04:00
|
|
|
dup = malloc(sizeof (struct css_style));
|
2005-01-16 03:03:45 +03:00
|
|
|
if (!dup)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* copy all style information into duplicate style */
|
|
|
|
memcpy(dup, style, sizeof(struct css_style));
|
|
|
|
|
|
|
|
return dup;
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-16 03:03:45 +03:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Free a CSS style.
|
2005-01-16 03:03:45 +03:00
|
|
|
*
|
|
|
|
* \param style The style to free
|
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-16 03:03:45 +03:00
|
|
|
void css_free_style(struct css_style *style)
|
|
|
|
{
|
|
|
|
assert(style);
|
|
|
|
|
2005-01-16 03:48:47 +03:00
|
|
|
free(style);
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-16 03:48:47 +03:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Free a CSS style, deleting all alloced elements.
|
2005-01-16 03:48:47 +03:00
|
|
|
*
|
|
|
|
* \param style The style to free
|
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-16 03:48:47 +03:00
|
|
|
void css_deep_free_style(struct css_style *style)
|
|
|
|
{
|
|
|
|
assert(style);
|
|
|
|
|
2005-01-16 03:03:45 +03:00
|
|
|
if (style->background_image.type == CSS_BACKGROUND_IMAGE_URI)
|
|
|
|
free(style->background_image.uri);
|
|
|
|
|
|
|
|
if (style->list_style_image.type == CSS_LIST_STYLE_IMAGE_URI)
|
|
|
|
free(style->list_style_image.uri);
|
|
|
|
|
2005-01-17 00:39:21 +03:00
|
|
|
if (style->content.type == CSS_CONTENT_INTERPRET)
|
|
|
|
css_deep_free_content(style->content.content);
|
|
|
|
|
|
|
|
if (style->counter_reset.type == CSS_COUNTER_RESET_INTERPRET)
|
|
|
|
css_deep_free_counter_control(style->counter_reset.data);
|
|
|
|
|
|
|
|
if (style->counter_increment.type == CSS_COUNTER_INCREMENT_INTERPRET)
|
|
|
|
css_deep_free_counter_control(style->counter_increment.data);
|
|
|
|
|
2005-01-16 03:03:45 +03:00
|
|
|
free(style);
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-17 00:39:21 +03:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Free all auto-generated content data.
|
2005-01-17 00:39:21 +03:00
|
|
|
*
|
2005-05-22 03:30:19 +04:00
|
|
|
* \param content the auto-generated content data to free
|
2005-01-17 00:39:21 +03:00
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
|
|
|
void css_deep_free_content(struct css_content *content)
|
|
|
|
{
|
2005-01-17 00:39:21 +03:00
|
|
|
struct css_content *next;
|
|
|
|
|
|
|
|
while (content) {
|
|
|
|
next = content->next;
|
|
|
|
switch (content->type) {
|
|
|
|
case CSS_CONTENT_STRING:
|
|
|
|
free(content->data.string);
|
|
|
|
break;
|
|
|
|
case CSS_CONTENT_URI:
|
|
|
|
free(content->data.uri);
|
|
|
|
break;
|
|
|
|
case CSS_CONTENT_COUNTER:
|
|
|
|
free(content->data.counter.name);
|
|
|
|
free(content->data.counter.separator);
|
|
|
|
break;
|
|
|
|
case CSS_CONTENT_ATTR:
|
|
|
|
free(content->data.attr);
|
|
|
|
break;
|
|
|
|
case CSS_CONTENT_OPEN_QUOTE:
|
|
|
|
case CSS_CONTENT_CLOSE_QUOTE:
|
|
|
|
case CSS_CONTENT_NO_OPEN_QUOTE:
|
|
|
|
case CSS_CONTENT_NO_CLOSE_QUOTE:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
free(content);
|
|
|
|
content = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-01-17 00:39:21 +03:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Free all counter control data.
|
2005-01-17 00:39:21 +03:00
|
|
|
*
|
|
|
|
* \param counter the counter control data to free
|
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
|
|
|
void css_deep_free_counter_control(struct css_counter_control *control)
|
|
|
|
{
|
2005-01-17 00:39:21 +03:00
|
|
|
struct css_counter_control *next;
|
|
|
|
|
|
|
|
while (control) {
|
|
|
|
next = control->next;
|
|
|
|
free(control->name);
|
|
|
|
free(control);
|
|
|
|
control = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
/**
|
2004-05-01 21:48:38 +04:00
|
|
|
* Create a new struct css_node.
|
|
|
|
*
|
2004-06-11 00:41:26 +04:00
|
|
|
* \param stylesheet content of type CONTENT_CSS
|
2004-05-01 21:48:38 +04:00
|
|
|
* \param type type of node
|
|
|
|
* \param data string for data, not copied
|
|
|
|
* \param data_length length of data
|
|
|
|
* \return allocated node, or 0 if memory exhausted
|
|
|
|
*
|
|
|
|
* Used by the parser.
|
2003-04-04 19:19:32 +04:00
|
|
|
*/
|
|
|
|
|
2004-06-09 23:55:06 +04:00
|
|
|
struct css_node * css_new_node(struct content *stylesheet,
|
|
|
|
css_node_type type,
|
2004-05-01 21:48:38 +04:00
|
|
|
const char *data, unsigned int data_length)
|
2003-04-04 19:19:32 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_node *node = malloc(sizeof *node);
|
|
|
|
if (!node)
|
|
|
|
return 0;
|
2003-04-04 19:19:32 +04:00
|
|
|
node->type = type;
|
|
|
|
node->data = data;
|
2004-05-01 21:48:38 +04:00
|
|
|
node->data_length = data_length;
|
|
|
|
node->value = 0;
|
2003-04-04 19:19:32 +04:00
|
|
|
node->next = 0;
|
2003-10-08 01:34:27 +04:00
|
|
|
node->comb = CSS_COMB_NONE;
|
2003-04-04 19:19:32 +04:00
|
|
|
node->style = 0;
|
2003-09-28 21:37:43 +04:00
|
|
|
node->specificity = 0;
|
2004-06-09 23:55:06 +04:00
|
|
|
node->stylesheet = stylesheet;
|
2005-01-05 23:22:57 +03:00
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free a struct css_node recursively.
|
|
|
|
*
|
|
|
|
* \param node css_node to free
|
|
|
|
*
|
|
|
|
* Used by the parser.
|
|
|
|
*/
|
|
|
|
|
2003-10-08 01:34:27 +04:00
|
|
|
void css_free_node(struct css_node *node)
|
2003-04-04 19:19:32 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
if (!node)
|
2003-04-04 19:19:32 +04:00
|
|
|
return;
|
2004-05-01 21:48:38 +04:00
|
|
|
if (node->value)
|
|
|
|
css_free_node(node->value);
|
|
|
|
if (node->next)
|
2003-04-04 19:19:32 +04:00
|
|
|
css_free_node(node->next);
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new struct css_selector.
|
|
|
|
*
|
|
|
|
* \param type type of selector
|
|
|
|
* \param data string for data, not copied
|
|
|
|
* \param data_length length of data
|
|
|
|
* \return allocated selector, or 0 if memory exhausted
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct css_selector * css_new_selector(css_selector_type type,
|
|
|
|
const char *data, unsigned int data_length)
|
2003-09-28 21:37:43 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_selector *node = malloc(sizeof *node);
|
|
|
|
if (!node)
|
|
|
|
return 0;
|
|
|
|
node->type = type;
|
|
|
|
node->data = data;
|
|
|
|
node->data_length = data_length;
|
|
|
|
node->data2 = 0;
|
|
|
|
node->detail = 0;
|
|
|
|
node->combiner = 0;
|
|
|
|
node->next = 0;
|
|
|
|
node->comb = CSS_COMB_NONE;
|
|
|
|
node->style = 0;
|
|
|
|
node->specificity = 0;
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free a struct css_selector recursively.
|
|
|
|
*
|
|
|
|
* \param node css_selector to free
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_free_selector(struct css_selector *node)
|
|
|
|
{
|
|
|
|
if (!node)
|
|
|
|
return;
|
|
|
|
if (node->detail)
|
|
|
|
css_free_selector(node->detail);
|
|
|
|
if (node->combiner)
|
|
|
|
css_free_selector(node->combiner);
|
|
|
|
if (node->next)
|
|
|
|
css_free_selector(node->next);
|
|
|
|
free(node);
|
2003-09-28 21:37:43 +04:00
|
|
|
}
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
2004-05-02 00:16:38 +04:00
|
|
|
* Process an \@import rule.
|
2004-05-01 21:48:38 +04:00
|
|
|
*/
|
|
|
|
|
2003-10-08 01:34:27 +04:00
|
|
|
void css_atimport(struct content *c, struct css_node *node)
|
2003-04-06 22:09:34 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
const char *s;
|
|
|
|
char *t, *url, *url1;
|
|
|
|
bool string = false, screen = true;
|
2003-06-17 23:24:21 +04:00
|
|
|
unsigned int i;
|
2004-05-01 21:48:38 +04:00
|
|
|
struct content **import_content;
|
2004-08-09 20:11:58 +04:00
|
|
|
url_func_result res;
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
LOG(("@import rule"));
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
import_content = realloc(c->data.css.import_content,
|
|
|
|
(c->data.css.import_count + 1) *
|
|
|
|
sizeof(*c->data.css.import_content));
|
|
|
|
if (!import_content) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
c->data.css.import_content = import_content;
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
/* uri(...) or "..." */
|
|
|
|
switch (node->type) {
|
2003-10-08 01:34:27 +04:00
|
|
|
case CSS_NODE_URI:
|
2004-05-01 21:48:38 +04:00
|
|
|
LOG(("URI '%.*s'", node->data_length, node->data));
|
2003-04-06 22:09:34 +04:00
|
|
|
for (s = node->data + 4;
|
|
|
|
*s == ' ' || *s == '\t' || *s == '\r' ||
|
|
|
|
*s == '\n' || *s == '\f';
|
|
|
|
s++)
|
|
|
|
;
|
|
|
|
if (*s == '\'' || *s == '"') {
|
2004-05-01 21:48:38 +04:00
|
|
|
string = true;
|
2003-04-06 22:09:34 +04:00
|
|
|
s++;
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
url = strndup(s, node->data_length - (s - node->data));
|
|
|
|
if (!url) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (t = url + strlen(url) - 2;
|
|
|
|
*t == ' ' || *t == '\t' || *t == '\r' ||
|
|
|
|
*t == '\n' || *t == '\f';
|
|
|
|
t--)
|
2003-04-06 22:09:34 +04:00
|
|
|
;
|
|
|
|
if (string)
|
2004-05-01 21:48:38 +04:00
|
|
|
*t = 0;
|
2003-04-06 22:09:34 +04:00
|
|
|
else
|
2004-05-01 21:48:38 +04:00
|
|
|
*(t + 1) = 0;
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
2003-10-08 01:34:27 +04:00
|
|
|
case CSS_NODE_STRING:
|
2004-05-01 21:48:38 +04:00
|
|
|
LOG(("STRING '%.*s'", node->data_length, node->data));
|
|
|
|
url = strndup(node->data, node->data_length);
|
|
|
|
if (!url) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return;
|
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* media not specified, 'screen', or 'all' */
|
|
|
|
for (node = node->next; node != 0; node = node->next) {
|
2004-05-01 21:48:38 +04:00
|
|
|
screen = false;
|
2003-10-08 01:34:27 +04:00
|
|
|
if (node->type != CSS_NODE_IDENT) {
|
2003-04-06 22:09:34 +04:00
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LOG(("medium '%s'", node->data));
|
2004-05-01 21:48:38 +04:00
|
|
|
if ((node->data_length == 6 &&
|
|
|
|
strncmp(node->data, "screen", 6) == 0) ||
|
|
|
|
(node->data_length == 3 &&
|
|
|
|
strncmp(node->data, "all", 3) == 0)) {
|
|
|
|
screen = true;
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
node = node->next;
|
2003-10-08 01:34:27 +04:00
|
|
|
if (node == 0 || node->type != CSS_NODE_COMMA) {
|
2003-04-06 22:09:34 +04:00
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!screen) {
|
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-08-09 20:11:58 +04:00
|
|
|
res = url_join(url, c->url, &url1);
|
|
|
|
if (res != URL_FUNC_OK) {
|
2003-12-26 03:17:55 +03:00
|
|
|
free(url);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
/* start the fetch */
|
|
|
|
c->data.css.import_count++;
|
2003-06-17 23:24:21 +04:00
|
|
|
i = c->data.css.import_count - 1;
|
Rework handling of HTTP redirects -- we now count the number of redirects followed for a given item and abort if a fixed limit is reached. This fixes sites which have pages that redirect to themselves.
Redirect handling is now transparent to clients of fetchcache.
The new scheme works as follows:
1) Request content for URL (fetchcache()
2) Start fetch of content (fetchcache_go()
3) If no redirect, continue through LOADING, READY, DONE etc. states as before
If redirect, receive NEWPTR for each redirect that occurs, then continue
through LOADING, READY, DONE etc. states as before.
The upshot of this is that redirects result in extra contents being created. It also means that, until LOADING has been received, the content (and thus the URL being fetched) may change. Therefore, fetchcache clients should expect to have to deal with transient data prior to LOADING occurring.
As a necessary side-effect of this, the HTML object URLs and CSS @import URLs are no longer stored alongside the relevant contents. These URLs can be accessed by interrogating the url member of struct content anyway, so it was a rather redundant scheme before.
svn path=/trunk/netsurf/; revision=3787
2008-01-28 04:35:00 +03:00
|
|
|
c->data.css.import_content[i] = fetchcache(url1,
|
2005-08-21 16:04:18 +04:00
|
|
|
css_atimport_callback, (intptr_t) c, i,
|
2005-01-03 05:09:20 +03:00
|
|
|
c->width, c->height, true, 0, 0, false, false);
|
2004-06-11 03:55:23 +04:00
|
|
|
if (c->data.css.import_content[i]) {
|
2003-06-17 23:24:21 +04:00
|
|
|
c->active++;
|
2004-06-11 03:55:23 +04:00
|
|
|
fetchcache_go(c->data.css.import_content[i], c->url,
|
2005-08-21 16:04:18 +04:00
|
|
|
css_atimport_callback, (intptr_t) c, i,
|
2005-01-25 02:02:37 +03:00
|
|
|
c->width, c->height,
|
2007-02-03 02:08:13 +03:00
|
|
|
0, 0, false, c->url);
|
2004-06-11 03:55:23 +04:00
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
free(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Fetchcache callback for imported stylesheets.
|
|
|
|
*/
|
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
void css_atimport_callback(content_msg msg, struct content *css,
|
2005-08-21 16:04:18 +04:00
|
|
|
intptr_t p1, intptr_t p2, union content_msg_data data)
|
2003-04-06 22:09:34 +04:00
|
|
|
{
|
2005-08-21 16:04:18 +04:00
|
|
|
struct content *c = (struct content *) p1;
|
|
|
|
unsigned int i = p2;
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
switch (msg) {
|
2003-06-17 23:24:21 +04:00
|
|
|
case CONTENT_MSG_LOADING:
|
|
|
|
if (css->type != CONTENT_CSS) {
|
2005-08-21 16:04:18 +04:00
|
|
|
content_remove_user(css, css_atimport_callback,
|
|
|
|
(intptr_t) c, i);
|
2007-03-19 03:04:09 +03:00
|
|
|
if (!css->user_list->next) {
|
|
|
|
/* We were only user and we don't
|
|
|
|
* want this content, so stop it
|
|
|
|
* fetching and mark it as having
|
|
|
|
* an error so it gets removed from
|
|
|
|
* the cache next time
|
|
|
|
* content_clean() gets called */
|
|
|
|
fetch_abort(css->fetch);
|
|
|
|
css->fetch = 0;
|
|
|
|
css->status = CONTENT_STATUS_ERROR;
|
|
|
|
}
|
2003-06-17 23:24:21 +04:00
|
|
|
c->data.css.import_content[i] = 0;
|
|
|
|
c->active--;
|
2004-06-11 00:41:26 +04:00
|
|
|
content_add_error(c, "NotCSS", 0);
|
2003-06-17 23:24:21 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_READY:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_MSG_DONE:
|
2003-04-06 22:09:34 +04:00
|
|
|
LOG(("got imported stylesheet '%s'", css->url));
|
|
|
|
/*css_dump_stylesheet(css->data.css);*/
|
|
|
|
c->active--;
|
|
|
|
break;
|
2006-07-05 03:43:49 +04:00
|
|
|
#ifdef WITH_AUTH
|
2006-07-05 02:03:39 +04:00
|
|
|
case CONTENT_MSG_AUTH:
|
2006-07-05 03:43:49 +04:00
|
|
|
#endif
|
|
|
|
#ifdef WITH_SSL
|
2006-07-05 02:03:39 +04:00
|
|
|
case CONTENT_MSG_SSL:
|
2006-07-05 03:43:49 +04:00
|
|
|
#endif
|
2006-07-05 02:03:39 +04:00
|
|
|
/* todo: handle AUTH and SSL */
|
2003-06-17 23:24:21 +04:00
|
|
|
case CONTENT_MSG_ERROR:
|
2007-03-18 20:09:55 +03:00
|
|
|
/* The stylesheet we were fetching may have been
|
|
|
|
* redirected, in that case, the object pointers
|
|
|
|
* will differ, so ensure that the object that's
|
|
|
|
* in error is still in use by us before invalidating
|
|
|
|
* the pointer */
|
|
|
|
if (c->data.css.import_content[i] == css) {
|
|
|
|
c->data.css.import_content[i] = 0;
|
|
|
|
c->active--;
|
|
|
|
content_add_error(c, "?", 0);
|
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
|
|
|
case CONTENT_MSG_STATUS:
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
2003-06-17 23:24:21 +04:00
|
|
|
|
2004-08-11 23:02:32 +04:00
|
|
|
case CONTENT_MSG_NEWPTR:
|
|
|
|
c->data.css.import_content[i] = css;
|
|
|
|
break;
|
|
|
|
|
2003-04-06 22:09:34 +04:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2004-08-05 05:57:14 +04:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Prepare a working stylesheet with pre-sorted lists of selectors from an
|
|
|
|
* array of stylesheets.
|
|
|
|
*
|
|
|
|
* \param stylesheet_content array of contents of type CONTENT_CSS (each may
|
|
|
|
* be 0)
|
|
|
|
* \param stylesheet_count number of entries in css
|
|
|
|
* \return working stylesheet, or 0 on memory exhaustion
|
2004-08-05 05:57:14 +04:00
|
|
|
*
|
2005-05-22 03:30:19 +04:00
|
|
|
* See CSS 2.1 6.4.
|
2004-08-05 05:57:14 +04:00
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
|
|
|
struct css_working_stylesheet *css_make_working_stylesheet(
|
|
|
|
struct content **stylesheet_content,
|
|
|
|
unsigned int stylesheet_count)
|
2004-08-05 05:57:14 +04:00
|
|
|
{
|
2005-05-22 03:30:19 +04:00
|
|
|
struct content **css = 0;
|
|
|
|
unsigned int css_count = 0;
|
|
|
|
struct css_working_stylesheet *working_stylesheet;
|
|
|
|
unsigned int chain;
|
|
|
|
struct css_selector **rule_scratch;
|
|
|
|
|
|
|
|
working_stylesheet = talloc(0, struct css_working_stylesheet);
|
|
|
|
if (!working_stylesheet)
|
|
|
|
return 0;
|
2004-08-05 05:57:14 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
/* make a complete list of stylesheets involved by walking @imports */
|
|
|
|
css_working_list_imports(stylesheet_content, stylesheet_count,
|
|
|
|
&css, &css_count);
|
|
|
|
|
|
|
|
rule_scratch = talloc_array(working_stylesheet, struct css_selector *,
|
|
|
|
css_count);
|
|
|
|
if (!rule_scratch) {
|
|
|
|
talloc_free(working_stylesheet);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-08-05 05:57:14 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
/* merge the corresponding sorted hash chains from each stylesheet */
|
|
|
|
for (chain = 0; chain != HASH_SIZE; chain++) {
|
|
|
|
if (!css_working_merge_chains(working_stylesheet, css,
|
|
|
|
css_count, chain, rule_scratch)) {
|
|
|
|
talloc_free(working_stylesheet);
|
|
|
|
return 0;
|
|
|
|
}
|
2004-08-05 05:57:14 +04:00
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
talloc_free(rule_scratch);
|
2004-08-05 05:57:14 +04:00
|
|
|
|
2008-01-31 04:47:57 +03:00
|
|
|
/*css_dump_working_stylesheet(working_stylesheet);*/
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
return working_stylesheet;
|
2004-08-05 05:57:14 +04:00
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2004-08-05 05:57:14 +04:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Recursively make a list of stylesheets and their imports.
|
2004-08-05 05:57:14 +04:00
|
|
|
*
|
2005-05-22 03:30:19 +04:00
|
|
|
* \param import array of contents of type CONTENT_CSS
|
|
|
|
* \param import_count number of elements in import
|
|
|
|
* \param css pointer to array of contents for result
|
|
|
|
* \param css_count number of elements used so far in *css
|
2004-08-05 05:57:14 +04:00
|
|
|
*/
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
bool css_working_list_imports(struct content **import,
|
|
|
|
unsigned int import_count,
|
|
|
|
struct content ***css, unsigned int *css_count)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
|
|
|
struct content **css2;
|
|
|
|
for (i = 0; i != import_count; i++) {
|
|
|
|
if (!import[i])
|
|
|
|
continue;
|
|
|
|
/* search for import[i] in css[0..css_count) */
|
|
|
|
for (j = 0; j != *css_count && (*css)[j] != import[i]; j++)
|
|
|
|
;
|
|
|
|
if (j != *css_count)
|
|
|
|
/* we've seen this stylesheet already */
|
|
|
|
continue;
|
|
|
|
/* recurse into imports of import[i] */
|
|
|
|
if (!css_working_list_imports(import[i]->data.css.
|
|
|
|
import_content,
|
|
|
|
import[i]->data.css.import_count,
|
|
|
|
css, css_count))
|
|
|
|
return false;
|
|
|
|
css2 = realloc(*css, sizeof *css * (*css_count + 1));
|
|
|
|
if (!css2)
|
2004-08-05 05:57:14 +04:00
|
|
|
return false;
|
2005-05-22 03:30:19 +04:00
|
|
|
*css = css2;
|
|
|
|
(*css)[*css_count] = import[i];
|
|
|
|
(*css_count)++;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2004-08-05 05:57:14 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge hash chains of rules into an array of pointers ordered by specificity.
|
|
|
|
*
|
|
|
|
* \param working_stylesheet working stylesheet to add array to
|
|
|
|
* \param css array of contents of type CONTENT_CSS
|
|
|
|
* \param css_count number of elements in css
|
|
|
|
* \param chain hash chain index to merge
|
|
|
|
* \param rule scratch array of css_selector with css_count entries
|
|
|
|
* \return true on success, false if memory exhausted
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool css_working_merge_chains(struct css_working_stylesheet *working_stylesheet,
|
|
|
|
struct content **css, unsigned int css_count,
|
|
|
|
unsigned int chain,
|
|
|
|
struct css_selector **rule)
|
|
|
|
{
|
|
|
|
unsigned int sheet, rules, rules_done = 0;
|
|
|
|
struct css_selector *selector;
|
|
|
|
unsigned int best = 0;
|
|
|
|
unsigned long min;
|
|
|
|
|
|
|
|
/* count total rules */
|
|
|
|
rules = 0;
|
|
|
|
for (sheet = 0; sheet != css_count; sheet++)
|
|
|
|
for (selector = css[sheet]->data.css.css->rule[chain];
|
|
|
|
selector;
|
|
|
|
selector = selector->next)
|
|
|
|
rules++;
|
|
|
|
working_stylesheet->rule[chain] = talloc_array(working_stylesheet,
|
|
|
|
struct css_selector *, rules + 1);
|
|
|
|
if (!working_stylesheet->rule[chain])
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* mergesort by specificity (increasing) */
|
|
|
|
for (sheet = 0; sheet != css_count; sheet++) {
|
|
|
|
rule[sheet] = 0;
|
|
|
|
rule[sheet] = css[sheet]->data.css.css->rule[chain];
|
2004-08-05 05:57:14 +04:00
|
|
|
}
|
2005-05-22 03:30:19 +04:00
|
|
|
for (; rules_done != rules; rules_done++) {
|
|
|
|
/* find rule with lowest specificity */
|
|
|
|
min = ULONG_MAX;
|
|
|
|
for (sheet = 0; sheet != css_count; sheet++) {
|
|
|
|
if (rule[sheet] && rule[sheet]->specificity < min) {
|
|
|
|
min = rule[sheet]->specificity;
|
|
|
|
best = sheet;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assert(min != ULONG_MAX);
|
|
|
|
working_stylesheet->rule[chain][rules_done] = rule[best];
|
|
|
|
rule[best] = rule[best]->next;
|
|
|
|
}
|
|
|
|
assert(rules_done == rules);
|
|
|
|
working_stylesheet->rule[chain][rules] = 0;
|
2004-08-05 05:57:14 +04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2003-09-28 03:36:34 +04:00
|
|
|
/**
|
|
|
|
* Find the style which applies to an element.
|
2004-05-01 21:48:38 +04:00
|
|
|
*
|
2005-05-22 03:30:19 +04:00
|
|
|
* \param working_stylesheet working stylesheet
|
2004-05-01 21:48:38 +04:00
|
|
|
* \param element element in xml tree to match
|
|
|
|
* \param style style to update
|
2008-02-25 19:37:48 +03:00
|
|
|
* \pram author updated to indicate properties with author level css
|
|
|
|
* importance
|
2004-05-01 21:48:38 +04:00
|
|
|
*
|
|
|
|
* The style is updated with any rules that match the element.
|
2003-09-28 03:36:34 +04:00
|
|
|
*/
|
2003-04-06 22:09:34 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
void css_get_style(struct css_working_stylesheet *working_stylesheet,
|
2008-02-25 19:37:48 +03:00
|
|
|
xmlNode *element, struct css_style *style,
|
|
|
|
struct css_importance *author)
|
2003-09-28 03:36:34 +04:00
|
|
|
{
|
2005-05-22 03:30:19 +04:00
|
|
|
unsigned int hash, rule_0 = 0, rule_h = 0;
|
|
|
|
struct css_selector *rule;
|
2008-02-25 19:37:48 +03:00
|
|
|
css_importance_reset(author); /* initialise to sub-author level */
|
2003-09-28 21:37:43 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
hash = css_hash((const char *) element->name,
|
|
|
|
strlen((const char *) element->name));
|
2004-08-05 05:57:14 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
/* merge sort rules from special hash chain 0 (universal selector) and
|
|
|
|
* rules from hash chain for element name */
|
|
|
|
while (working_stylesheet->rule[0] &&
|
|
|
|
working_stylesheet->rule[0][rule_0] &&
|
|
|
|
working_stylesheet->rule[hash] &&
|
|
|
|
working_stylesheet->rule[hash][rule_h]) {
|
|
|
|
if (working_stylesheet->rule[0][rule_0]->specificity <
|
|
|
|
working_stylesheet->rule[hash][rule_h]->
|
|
|
|
specificity) {
|
|
|
|
rule = working_stylesheet->rule[0][rule_0];
|
|
|
|
rule_0++;
|
|
|
|
} else {
|
|
|
|
rule = working_stylesheet->rule[hash][rule_h];
|
|
|
|
rule_h++;
|
|
|
|
}
|
|
|
|
if (css_match_rule(rule, element))
|
2008-02-25 19:37:48 +03:00
|
|
|
css_merge(style, rule->style, rule->specificity,
|
|
|
|
author);
|
2005-05-22 03:30:19 +04:00
|
|
|
}
|
2004-08-05 05:57:14 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
/* remaining rules from hash chain 0 */
|
|
|
|
while (working_stylesheet->rule[0] &&
|
|
|
|
working_stylesheet->rule[0][rule_0]) {
|
|
|
|
rule = working_stylesheet->rule[0][rule_0];
|
|
|
|
rule_0++;
|
|
|
|
if (css_match_rule(rule, element))
|
2008-02-25 19:37:48 +03:00
|
|
|
css_merge(style, rule->style, rule->specificity,
|
|
|
|
author);
|
2004-08-05 05:57:14 +04:00
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
/* remaining rules from hash chain for element name */
|
|
|
|
while (working_stylesheet->rule[hash] &&
|
|
|
|
working_stylesheet->rule[hash][rule_h]) {
|
|
|
|
rule = working_stylesheet->rule[hash][rule_h];
|
|
|
|
rule_h++;
|
|
|
|
if (css_match_rule(rule, element))
|
2008-02-25 19:37:48 +03:00
|
|
|
css_merge(style, rule->style, rule->specificity,
|
|
|
|
author);
|
2005-05-22 03:30:19 +04:00
|
|
|
}
|
2003-09-28 03:36:34 +04:00
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
|
|
|
|
|
2003-09-28 03:36:34 +04:00
|
|
|
/**
|
|
|
|
* Determine if a rule applies to an element.
|
|
|
|
*/
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
bool css_match_rule(struct css_selector *rule, xmlNode *element)
|
2003-09-28 03:36:34 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_selector *detail;
|
2003-09-28 03:36:34 +04:00
|
|
|
xmlNode *anc, *prev;
|
|
|
|
|
2003-10-02 15:12:44 +04:00
|
|
|
assert(element->type == XML_ELEMENT_NODE);
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
if (rule->data && (rule->data_length !=
|
|
|
|
strlen((const char *) element->name) ||
|
|
|
|
strncasecmp(rule->data, (const char *) element->name,
|
|
|
|
rule->data_length) != 0))
|
2003-09-28 03:36:34 +04:00
|
|
|
return false;
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
for (detail = rule->detail; detail; detail = detail->next) {
|
|
|
|
if (!css_match_detail(detail, element))
|
2003-09-28 03:36:34 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
if (!rule->combiner)
|
2003-09-28 03:36:34 +04:00
|
|
|
return true;
|
2003-10-08 01:34:27 +04:00
|
|
|
|
2003-09-28 03:36:34 +04:00
|
|
|
switch (rule->comb) {
|
2003-10-08 01:34:27 +04:00
|
|
|
case CSS_COMB_ANCESTOR:
|
2003-09-28 03:36:34 +04:00
|
|
|
for (anc = element->parent; anc; anc = anc->parent)
|
2003-10-02 15:12:44 +04:00
|
|
|
if (anc->type == XML_ELEMENT_NODE &&
|
2004-05-01 21:48:38 +04:00
|
|
|
css_match_rule(rule->combiner, anc))
|
2003-09-28 03:36:34 +04:00
|
|
|
return true;
|
2003-04-06 22:09:34 +04:00
|
|
|
break;
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-10-08 01:34:27 +04:00
|
|
|
case CSS_COMB_PRECEDED:
|
2003-09-28 03:36:34 +04:00
|
|
|
for (prev = element->prev;
|
|
|
|
prev && prev->type != XML_ELEMENT_NODE;
|
|
|
|
prev = prev->prev)
|
|
|
|
;
|
|
|
|
if (!prev)
|
|
|
|
return false;
|
2004-05-01 21:48:38 +04:00
|
|
|
return css_match_rule(rule->combiner, prev);
|
2003-09-28 03:36:34 +04:00
|
|
|
break;
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-10-08 01:34:27 +04:00
|
|
|
case CSS_COMB_PARENT:
|
2003-10-02 15:12:44 +04:00
|
|
|
for (anc = element->parent;
|
|
|
|
anc && anc->type != XML_ELEMENT_NODE;
|
|
|
|
anc = anc->parent)
|
|
|
|
;
|
|
|
|
if (!anc)
|
2003-09-28 03:36:34 +04:00
|
|
|
return false;
|
2004-05-01 21:48:38 +04:00
|
|
|
return css_match_rule(rule->combiner, anc);
|
2003-09-28 03:36:34 +04:00
|
|
|
break;
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2003-09-28 03:36:34 +04:00
|
|
|
default:
|
|
|
|
assert(0);
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
2003-04-06 22:09:34 +04:00
|
|
|
|
2003-09-28 03:36:34 +04:00
|
|
|
return false;
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Determine if a selector detail matches an element.
|
|
|
|
*
|
|
|
|
* \param detail a css_selector of type other than CSS_SELECTOR_ELEMENT
|
|
|
|
* \param element element in xml tree to match
|
|
|
|
* \return true if the selector matches the element
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool css_match_detail(const struct css_selector *detail,
|
|
|
|
xmlNode *element)
|
|
|
|
{
|
|
|
|
bool match = false;
|
|
|
|
char *s = 0;
|
|
|
|
char *space, *word;
|
2004-08-14 19:07:21 +04:00
|
|
|
size_t length;
|
2004-05-01 21:48:38 +04:00
|
|
|
|
|
|
|
switch (detail->type) {
|
|
|
|
case CSS_SELECTOR_ID:
|
|
|
|
s = (char *) xmlGetProp(element,
|
|
|
|
(const xmlChar *) "id");
|
2005-01-03 03:45:43 +03:00
|
|
|
/* case sensitive, according to HTML4.01 */
|
2004-05-01 21:48:38 +04:00
|
|
|
if (s && strlen(s) == detail->data_length &&
|
2005-01-03 03:45:43 +03:00
|
|
|
strncmp(detail->data, s,
|
2004-05-01 21:48:38 +04:00
|
|
|
detail->data_length) == 0)
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_CLASS:
|
|
|
|
s = (char *) xmlGetProp(element,
|
|
|
|
(const xmlChar *) "class");
|
|
|
|
if (!s)
|
|
|
|
break;
|
|
|
|
word = s;
|
|
|
|
do {
|
|
|
|
space = strchr(word, ' ');
|
|
|
|
if (space)
|
|
|
|
length = space - word;
|
|
|
|
else
|
|
|
|
length = strlen(word);
|
2005-01-03 03:45:43 +03:00
|
|
|
/* case sensitive, according to HTML4.01 */
|
2004-05-01 21:48:38 +04:00
|
|
|
if (length == detail->data_length &&
|
2005-01-03 03:45:43 +03:00
|
|
|
strncmp(word, detail->data,
|
2004-05-01 21:48:38 +04:00
|
|
|
length) == 0) {
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
word = space + 1;
|
|
|
|
} while (space);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_ATTRIB:
|
|
|
|
/* matches if an attribute is present */
|
|
|
|
word = strndup(detail->data, detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *) xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (s)
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_ATTRIB_EQ:
|
|
|
|
/* matches if an attribute has a certain value*/
|
|
|
|
word = strndup(detail->data, detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *) xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (s && strlen(s) == detail->data2_length &&
|
|
|
|
strncasecmp(detail->data2, s,
|
|
|
|
detail->data2_length) == 0)
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_ATTRIB_INC:
|
|
|
|
/* matches if one of the space separated words
|
|
|
|
* in the attribute is equal */
|
|
|
|
word = strndup(detail->data,
|
|
|
|
detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *) xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (!s)
|
|
|
|
break;
|
|
|
|
word = s;
|
|
|
|
do {
|
|
|
|
space = strchr(word, ' ');
|
|
|
|
if (space)
|
|
|
|
length = space - word;
|
|
|
|
else
|
|
|
|
length = strlen(word);
|
|
|
|
if (length == detail->data2_length &&
|
|
|
|
strncasecmp(word, detail->data2,
|
|
|
|
length) == 0) {
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
word = space + 1;
|
|
|
|
} while (space);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_ATTRIB_DM:
|
|
|
|
/* matches if a prefix up to a hyphen matches */
|
|
|
|
word = strndup(detail->data,
|
|
|
|
detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *) xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (!s)
|
|
|
|
break;
|
|
|
|
length = detail->data2_length;
|
|
|
|
if (strncasecmp(detail->data2, s, length) == 0 &&
|
|
|
|
(s[length] == '-' || s[length] == 0))
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
|
2004-07-31 01:53:52 +04:00
|
|
|
case CSS_SELECTOR_ATTRIB_PRE:
|
|
|
|
/* matches if the attribute begins with a certain
|
|
|
|
* value (CSS3) */
|
|
|
|
word = strndup(detail->data, detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *)xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (s && strncasecmp(detail->data2, s,
|
|
|
|
detail->data2_length) == 0)
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_ATTRIB_SUF:
|
|
|
|
/* matches if the attribute ends with a certain
|
|
|
|
* value (CSS3) */
|
|
|
|
word = strndup(detail->data, detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *)xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (!s)
|
|
|
|
break;
|
2006-02-06 01:22:35 +03:00
|
|
|
length = strlen(s);
|
|
|
|
if (detail->data2_length <= length) {
|
|
|
|
word = s + (length - detail->data2_length);
|
|
|
|
if (s && strncasecmp(detail->data2, word,
|
|
|
|
detail->data2_length) == 0)
|
|
|
|
match = true;
|
|
|
|
}
|
2004-07-31 01:53:52 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CSS_SELECTOR_ATTRIB_SUB:
|
|
|
|
/* matches if the attribute contains a certain
|
|
|
|
* value (CSS3) */
|
|
|
|
word = strndup(detail->data, detail->data_length);
|
|
|
|
if (!word) {
|
|
|
|
/** \todo report to user */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
s = (char *)xmlGetProp(element,
|
|
|
|
(const xmlChar *) word);
|
|
|
|
free(word);
|
|
|
|
if (!s)
|
|
|
|
break;
|
|
|
|
/* case insensitive strstr follows */
|
|
|
|
/* space -> last possible start position */
|
|
|
|
/* word -> start of string to search */
|
|
|
|
space = s + (strlen(s) - detail->data2_length);
|
|
|
|
word = s;
|
|
|
|
while (word <= space) {
|
|
|
|
if (strncasecmp(detail->data2, word,
|
|
|
|
detail->data2_length) == 0) {
|
|
|
|
match = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
word++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
case CSS_SELECTOR_PSEUDO:
|
2004-08-05 05:57:14 +04:00
|
|
|
if (detail->data_length == 11 &&
|
|
|
|
strncasecmp(detail->data,
|
|
|
|
"first-child", 11) == 0) {
|
|
|
|
match = css_match_first_child(detail,
|
|
|
|
element);
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s)
|
|
|
|
xmlFree(s);
|
|
|
|
|
|
|
|
return match;
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2004-08-05 05:57:14 +04:00
|
|
|
/**
|
2005-05-22 03:30:19 +04:00
|
|
|
* Handle :first-child pseudo-class.
|
2004-08-05 05:57:14 +04:00
|
|
|
*
|
|
|
|
* \param detail a css_selector of type other than CSS_SELECTOR_ELEMENT
|
|
|
|
* \param element element in xml tree to match
|
|
|
|
* \return true if the selector matches the element
|
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2004-08-05 05:57:14 +04:00
|
|
|
bool css_match_first_child(const struct css_selector *detail,
|
|
|
|
xmlNode *element)
|
|
|
|
{
|
|
|
|
xmlNode *prev;
|
|
|
|
|
|
|
|
for (prev = element->prev; prev && prev->type != XML_ELEMENT_NODE;
|
|
|
|
prev = prev->prev)
|
|
|
|
;
|
|
|
|
|
|
|
|
if (!prev)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Parse a stand-alone CSS property list.
|
|
|
|
*
|
2004-06-11 16:51:40 +04:00
|
|
|
* \param c parent content
|
2004-05-01 21:48:38 +04:00
|
|
|
* \param style css_style to update
|
|
|
|
* \param str property list, as found in HTML style attributes
|
|
|
|
*/
|
|
|
|
|
2004-06-11 16:51:40 +04:00
|
|
|
void css_parse_property_list(struct content *c, struct css_style * style,
|
|
|
|
char * str)
|
2003-04-04 19:19:32 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
unsigned char *source_data;
|
|
|
|
unsigned char *current, *end, *token_text;
|
|
|
|
size_t length;
|
|
|
|
unsigned int i;
|
2003-04-05 20:24:43 +04:00
|
|
|
int token;
|
2004-05-01 21:48:38 +04:00
|
|
|
void *parser;
|
2005-08-01 02:06:03 +04:00
|
|
|
struct css_parser_params param = {true, c, 0, false, false, false};
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_parser_token token_data;
|
|
|
|
const struct css_parser_token token_start = { "{", 1 };
|
|
|
|
const struct css_parser_token token_end = { "}", 1 };
|
|
|
|
|
|
|
|
length = strlen(str);
|
|
|
|
|
|
|
|
parser = css_parser_Alloc(malloc);
|
|
|
|
source_data = malloc(length + 10);
|
|
|
|
|
|
|
|
if (!parser || !source_data) {
|
|
|
|
free(parser);
|
|
|
|
css_parser_Free(parser, free);
|
|
|
|
return;
|
|
|
|
}
|
2003-04-05 20:24:43 +04:00
|
|
|
|
2007-05-02 07:17:19 +04:00
|
|
|
strcpy((char *) source_data, str);
|
2004-05-01 21:48:38 +04:00
|
|
|
for (i = 0; i != 10; i++)
|
|
|
|
source_data[length + i] = 0;
|
2003-04-05 20:24:43 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
css_parser_(parser, LBRACE, token_start, ¶m);
|
|
|
|
|
|
|
|
current = source_data;
|
|
|
|
end = source_data + strlen(str);
|
2004-08-14 18:30:12 +04:00
|
|
|
while (current < end
|
2005-01-02 17:42:16 +03:00
|
|
|
&& (token = css_tokenise(¤t, end + 10,
|
|
|
|
&token_text))) {
|
2007-05-02 07:17:19 +04:00
|
|
|
token_data.text = (char *) token_text;
|
2004-05-01 21:48:38 +04:00
|
|
|
token_data.length = current - token_text;
|
|
|
|
css_parser_(parser, token, token_data, ¶m);
|
|
|
|
if (param.syntax_error) {
|
2007-05-02 07:17:19 +04:00
|
|
|
LOG(("syntax error near offset %li",
|
|
|
|
(unsigned long) (token_text - source_data)));
|
2004-05-01 21:48:38 +04:00
|
|
|
param.syntax_error = false;
|
|
|
|
} else if (param.memory_error) {
|
|
|
|
LOG(("out of memory"));
|
|
|
|
break;
|
|
|
|
}
|
2003-04-05 20:24:43 +04:00
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
css_parser_(parser, RBRACE, token_end, ¶m);
|
|
|
|
css_parser_(parser, 0, token_data, ¶m);
|
2003-04-05 20:24:43 +04:00
|
|
|
|
|
|
|
css_parser_Free(parser, free);
|
2004-05-01 21:48:38 +04:00
|
|
|
|
|
|
|
if (param.memory_error) {
|
|
|
|
css_free_node(param.declaration);
|
|
|
|
return;
|
|
|
|
}
|
2003-04-05 20:24:43 +04:00
|
|
|
|
|
|
|
css_add_declarations(style, param.declaration);
|
|
|
|
|
|
|
|
css_free_node(param.declaration);
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
free(source_data);
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2004-05-01 21:48:38 +04:00
|
|
|
* Dump a css_style to stderr in CSS-like syntax.
|
2003-04-04 19:19:32 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
void css_dump_style(const struct css_style * const style)
|
|
|
|
{
|
2004-02-02 03:22:59 +03:00
|
|
|
unsigned int i;
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "{ ");
|
2004-05-01 21:48:38 +04:00
|
|
|
|
|
|
|
#define DUMP_COLOR(z, s) \
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->z != CSS_COLOR_NOT_SET) { \
|
2004-05-01 21:48:38 +04:00
|
|
|
if (style->z == TRANSPARENT) \
|
|
|
|
fprintf(stderr, s ": transparent; "); \
|
|
|
|
else if (style->z == CSS_COLOR_NONE) \
|
|
|
|
fprintf(stderr, s ": none; "); \
|
|
|
|
else \
|
|
|
|
fprintf(stderr, s ": #%.6lx; ", style->z); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DUMP_KEYWORD(z, s, n) \
|
|
|
|
if (style->z != css_empty_style.z) \
|
|
|
|
fprintf(stderr, s ": %s; ", n[style->z]);
|
|
|
|
|
|
|
|
DUMP_COLOR(background_color, "background-color");
|
2004-06-11 00:41:26 +04:00
|
|
|
if (style->background_attachment !=
|
|
|
|
css_empty_style.background_attachment ||
|
|
|
|
style->background_image.type !=
|
|
|
|
css_empty_style.background_image.type ||
|
|
|
|
style->background_position.horz.pos !=
|
|
|
|
css_empty_style.background_position.horz.pos ||
|
|
|
|
style->background_position.vert.pos !=
|
|
|
|
css_empty_style.background_position.vert.pos ||
|
|
|
|
style->background_repeat !=
|
|
|
|
css_empty_style.background_repeat) {
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, "background:");
|
2004-06-11 00:41:26 +04:00
|
|
|
switch (style->background_image.type) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_BACKGROUND_IMAGE_NONE:
|
|
|
|
fprintf(stderr, " none");
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_IMAGE_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_IMAGE_URI:
|
|
|
|
fprintf(stderr, " (%p) \"%s\"",
|
|
|
|
style->background_image.uri,
|
|
|
|
style->background_image.uri);
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_IMAGE_NOT_SET:
|
|
|
|
;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-06-11 00:41:26 +04:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
|
|
|
|
if (style->background_repeat ==
|
|
|
|
CSS_BACKGROUND_REPEAT_UNKNOWN)
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
else if (style->background_repeat ==
|
|
|
|
CSS_BACKGROUND_REPEAT_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
|
|
|
fprintf(stderr, " %s",
|
2004-06-11 00:41:26 +04:00
|
|
|
css_background_repeat_name[
|
2005-01-11 22:39:49 +03:00
|
|
|
style->background_repeat]);
|
|
|
|
|
|
|
|
if (style->background_attachment ==
|
|
|
|
CSS_BACKGROUND_ATTACHMENT_UNKNOWN)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " UNKNOWN");
|
2007-10-28 20:01:53 +03:00
|
|
|
else if (style->background_attachment == CSS_BACKGROUND_ATTACHMENT_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " %s",
|
2004-06-25 18:28:29 +04:00
|
|
|
css_background_attachment_name[
|
2005-01-11 22:39:49 +03:00
|
|
|
style->background_attachment]);
|
|
|
|
|
2004-06-25 03:29:31 +04:00
|
|
|
switch (style->background_position.horz.pos) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_BACKGROUND_POSITION_LENGTH:
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
css_dump_length(&style->background_position.
|
|
|
|
horz.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_POSITION_PERCENT:
|
|
|
|
fprintf(stderr, " %g%%",
|
|
|
|
style->background_position.
|
|
|
|
horz.value.percent);
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_POSITION_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_POSITION_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-06-25 03:29:31 +04:00
|
|
|
}
|
|
|
|
switch (style->background_position.vert.pos) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_BACKGROUND_POSITION_LENGTH:
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
css_dump_length(&style->background_position.
|
|
|
|
vert.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_POSITION_PERCENT:
|
|
|
|
fprintf(stderr, " %g%%",
|
|
|
|
style->background_position.
|
|
|
|
vert.value.percent);
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_POSITION_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_BACKGROUND_POSITION_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-06-25 03:29:31 +04:00
|
|
|
}
|
2004-06-11 00:41:26 +04:00
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
2004-08-01 18:13:47 +04:00
|
|
|
for (i = 0; i != 4; i++) {
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->border[i].color != CSS_COLOR_NOT_SET ||
|
|
|
|
style->border[i].width.width !=
|
|
|
|
CSS_BORDER_WIDTH_NOT_SET ||
|
|
|
|
style->border[i].style !=
|
|
|
|
CSS_BORDER_STYLE_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "border-");
|
|
|
|
switch (i) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case TOP:
|
|
|
|
fprintf(stderr, "top:");
|
|
|
|
break;
|
|
|
|
case RIGHT:
|
|
|
|
fprintf(stderr, "right:");
|
|
|
|
break;
|
|
|
|
case BOTTOM:
|
|
|
|
fprintf(stderr, "bottom:");
|
|
|
|
break;
|
|
|
|
case LEFT:
|
|
|
|
fprintf(stderr, "left:");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
switch (style->border[i].width.width) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_BORDER_WIDTH_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_BORDER_WIDTH_LENGTH:
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
css_dump_length(&style->border[i].width.value);
|
|
|
|
break;
|
|
|
|
case CSS_BORDER_WIDTH_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
|
|
|
|
if (style->border[i].style ==
|
|
|
|
CSS_BORDER_STYLE_UNKNOWN)
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
else if (style->border[i].style ==
|
|
|
|
CSS_BORDER_STYLE_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
|
|
|
fprintf(stderr, " %s",
|
|
|
|
css_border_style_name[
|
|
|
|
style->border[i].style]);
|
2004-08-01 18:13:47 +04:00
|
|
|
|
|
|
|
if (style->border[i].color == TRANSPARENT)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " transparent");
|
2004-08-01 18:13:47 +04:00
|
|
|
else if (style->border[i].color == CSS_COLOR_NONE)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " none");
|
2004-08-01 18:13:47 +04:00
|
|
|
else if (style->border[i].color == CSS_COLOR_INHERIT)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " inherit");
|
2005-01-11 22:39:49 +03:00
|
|
|
else if (style->border[i].color == CSS_COLOR_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2004-08-01 18:13:47 +04:00
|
|
|
else
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " #%.6lx",
|
|
|
|
style->border[i].color);
|
|
|
|
fprintf(stderr, "; ");
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
}
|
2005-05-22 03:30:19 +04:00
|
|
|
DUMP_KEYWORD(border_collapse, "border-collapse",
|
|
|
|
css_border_collapse_name);
|
2005-01-11 22:39:49 +03:00
|
|
|
if (style->border_spacing.border_spacing !=
|
2005-05-22 03:30:19 +04:00
|
|
|
CSS_BORDER_SPACING_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "border-spacing: ");
|
|
|
|
css_dump_length(&style->border_spacing.horz);
|
2005-01-02 17:42:16 +03:00
|
|
|
fprintf(stderr, " ");
|
2004-08-01 18:13:47 +04:00
|
|
|
css_dump_length(&style->border_spacing.vert);
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
2004-08-02 01:56:47 +04:00
|
|
|
|
2004-08-01 18:13:47 +04:00
|
|
|
DUMP_KEYWORD(caption_side, "caption-side", css_caption_side_name);
|
2004-05-01 21:48:38 +04:00
|
|
|
DUMP_KEYWORD(clear, "clear", css_clear_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->clip.clip != CSS_CLIP_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "clip: ");
|
|
|
|
switch (style->clip.clip) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_CLIP_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_CLIP_AUTO:
|
|
|
|
fprintf(stderr, "auto");
|
|
|
|
break;
|
|
|
|
case CSS_CLIP_RECT:
|
|
|
|
fprintf(stderr, "rect(");
|
|
|
|
for (i = 0; i != 4; i++) {
|
|
|
|
switch (style->clip.rect[i].rect) {
|
|
|
|
case CSS_CLIP_RECT_AUTO:
|
|
|
|
fprintf(stderr, "auto");
|
|
|
|
break;
|
|
|
|
case CSS_CLIP_RECT_LENGTH:
|
|
|
|
css_dump_length(&style->clip.rect[i].value);
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
2005-05-22 03:30:19 +04:00
|
|
|
if (i != 3)
|
|
|
|
fprintf(stderr, ", ");
|
|
|
|
}
|
|
|
|
fprintf(stderr, ")");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
DUMP_COLOR(color, "color");
|
|
|
|
DUMP_KEYWORD(cursor, "cursor", css_cursor_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
DUMP_KEYWORD(direction, "direction", css_direction_name);
|
2004-05-01 21:48:38 +04:00
|
|
|
DUMP_KEYWORD(display, "display", css_display_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
DUMP_KEYWORD(empty_cells, "empty-cells", css_empty_cells_name);
|
2004-05-01 21:48:38 +04:00
|
|
|
DUMP_KEYWORD(float_, "float", css_float_name);
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->font_style != CSS_FONT_STYLE_NOT_SET ||
|
|
|
|
style->font_weight != CSS_FONT_WEIGHT_NOT_SET ||
|
|
|
|
style->font_size.size != CSS_FONT_SIZE_NOT_SET ||
|
|
|
|
style->line_height.size != CSS_LINE_HEIGHT_NOT_SET ||
|
|
|
|
style->font_family != CSS_FONT_FAMILY_NOT_SET ||
|
|
|
|
style->font_variant != CSS_FONT_VARIANT_NOT_SET) {
|
|
|
|
fprintf(stderr, "font:");
|
2005-01-11 22:39:49 +03:00
|
|
|
|
|
|
|
if (style->font_style == CSS_FONT_STYLE_UNKNOWN)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " UNKNOWN");
|
2005-01-11 22:39:49 +03:00
|
|
|
else if (style->font_style == CSS_FONT_STYLE_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " %s",
|
2005-01-11 22:39:49 +03:00
|
|
|
css_font_style_name[style->font_style]);
|
|
|
|
|
|
|
|
if (style->font_weight == CSS_FONT_WEIGHT_UNKNOWN)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " UNKNOWN");
|
2005-01-11 22:39:49 +03:00
|
|
|
else if (style->font_weight == CSS_FONT_WEIGHT_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " %s",
|
2004-05-01 21:48:38 +04:00
|
|
|
css_font_weight_name[style->font_weight]);
|
2005-01-11 22:39:49 +03:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
switch (style->font_size.size) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_FONT_SIZE_ABSOLUTE:
|
|
|
|
fprintf(stderr, " [%g]",
|
|
|
|
style->font_size.value.absolute);
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_LENGTH:
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
css_dump_length(&style->font_size.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_PERCENT:
|
|
|
|
fprintf(stderr, " %g%%",
|
|
|
|
style->font_size.value.percent);
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-05-01 21:48:38 +04:00
|
|
|
}
|
|
|
|
switch (style->line_height.size) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_LINE_HEIGHT_ABSOLUTE:
|
|
|
|
fprintf(stderr, "/[%g]",
|
|
|
|
style->line_height.value.absolute);
|
2005-01-11 22:39:49 +03:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_LINE_HEIGHT_LENGTH:
|
|
|
|
fprintf(stderr, "/");
|
|
|
|
css_dump_length(&style->line_height.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_LINE_HEIGHT_PERCENT:
|
|
|
|
fprintf(stderr, "/%g%%",
|
|
|
|
style->line_height.value.percent);
|
2004-05-01 21:48:38 +04:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_LINE_HEIGHT_INHERIT:
|
|
|
|
fprintf(stderr, "/inherit");
|
|
|
|
break;
|
|
|
|
case CSS_LINE_HEIGHT_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "/UNKNOWN");
|
|
|
|
break;
|
2004-02-02 03:22:59 +03:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (style->font_family == CSS_FONT_FAMILY_UNKNOWN)
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
else if (style->font_family == CSS_FONT_FAMILY_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
|
|
|
fprintf(stderr, " %s",
|
2004-05-01 21:48:38 +04:00
|
|
|
css_font_family_name[style->font_family]);
|
2005-01-11 22:39:49 +03:00
|
|
|
|
|
|
|
if (style->font_variant == CSS_FONT_VARIANT_UNKNOWN)
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
else if (style->font_variant == CSS_FONT_VARIANT_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
|
|
|
fprintf(stderr, " %s",
|
2004-05-01 21:48:38 +04:00
|
|
|
css_font_variant_name[style->font_variant]);
|
|
|
|
fprintf(stderr, "; ");
|
2004-02-02 03:22:59 +03:00
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->height.height != CSS_HEIGHT_NOT_SET) {
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "height: ");
|
|
|
|
switch (style->height.height) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_HEIGHT_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_HEIGHT_AUTO:
|
|
|
|
fprintf(stderr, "auto");
|
|
|
|
break;
|
|
|
|
case CSS_HEIGHT_LENGTH:
|
|
|
|
css_dump_length(&style->height.length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-02-02 03:22:59 +03:00
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "; ");
|
2004-02-02 03:22:59 +03:00
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->letter_spacing.letter_spacing !=
|
|
|
|
CSS_LETTER_SPACING_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "letter-spacing: ");
|
|
|
|
switch (style->letter_spacing.letter_spacing) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_LETTER_SPACING_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_LETTER_SPACING_NORMAL:
|
|
|
|
fprintf(stderr, "normal");
|
|
|
|
break;
|
|
|
|
case CSS_LETTER_SPACING_LENGTH:
|
|
|
|
css_dump_length(&style->letter_spacing.length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->list_style_type != CSS_LIST_STYLE_TYPE_NOT_SET ||
|
|
|
|
style->list_style_position !=
|
|
|
|
CSS_LIST_STYLE_POSITION_NOT_SET ||
|
|
|
|
style->list_style_image.type !=
|
|
|
|
CSS_LIST_STYLE_IMAGE_NOT_SET) {
|
|
|
|
fprintf(stderr, "list-style:");
|
2005-01-11 22:39:49 +03:00
|
|
|
|
|
|
|
if (style->list_style_type == CSS_LIST_STYLE_TYPE_UNKNOWN)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " UNKNOWN");
|
2005-01-11 22:39:49 +03:00
|
|
|
else if (style->list_style_type == CSS_LIST_STYLE_TYPE_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " %s",
|
2005-01-11 22:39:49 +03:00
|
|
|
css_list_style_type_name[
|
|
|
|
style->list_style_type]);
|
|
|
|
|
2007-10-28 20:01:53 +03:00
|
|
|
if (style->list_style_position ==
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_LIST_STYLE_POSITION_UNKNOWN)
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
2007-10-28 20:01:53 +03:00
|
|
|
else if (style->list_style_position ==
|
2005-01-11 22:39:49 +03:00
|
|
|
CSS_LIST_STYLE_POSITION_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
|
|
|
fprintf(stderr, " %s",
|
|
|
|
css_list_style_position_name[
|
|
|
|
style->list_style_position]);
|
|
|
|
|
2004-08-01 18:13:47 +04:00
|
|
|
switch (style->list_style_image.type) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_LIST_STYLE_IMAGE_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_LIST_STYLE_IMAGE_NONE:
|
|
|
|
fprintf(stderr, " none");
|
|
|
|
break;
|
|
|
|
case CSS_LIST_STYLE_IMAGE_URI:
|
|
|
|
fprintf(stderr, " url('%s')",
|
|
|
|
style->list_style_image.uri);
|
|
|
|
break;
|
|
|
|
case CSS_LIST_STYLE_IMAGE_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
}
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->margin[0].margin != CSS_MARGIN_NOT_SET ||
|
|
|
|
style->margin[1].margin != CSS_MARGIN_NOT_SET ||
|
|
|
|
style->margin[2].margin != CSS_MARGIN_NOT_SET ||
|
|
|
|
style->margin[3].margin != CSS_MARGIN_NOT_SET) {
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "margin:");
|
|
|
|
for (i = 0; i != 4; i++) {
|
|
|
|
switch (style->margin[i].margin) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MARGIN_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
2004-08-01 18:13:47 +04:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MARGIN_LENGTH:
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
css_dump_length(&style->margin[i].value.length);
|
2005-01-02 17:42:16 +03:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MARGIN_PERCENT:
|
|
|
|
fprintf(stderr, " %g%%",
|
|
|
|
style->margin[i].value.percent);
|
2004-08-01 18:13:47 +04:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MARGIN_AUTO:
|
|
|
|
fprintf(stderr, " auto");
|
2004-08-01 18:13:47 +04:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MARGIN_NOT_SET:
|
|
|
|
fprintf(stderr, " .");
|
2005-01-11 22:39:49 +03:00
|
|
|
break;
|
|
|
|
default:
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " UNKNOWN");
|
2005-01-11 22:39:49 +03:00
|
|
|
break;
|
2005-05-22 03:30:19 +04:00
|
|
|
}
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->max_height.max_height != CSS_MAX_HEIGHT_NOT_SET) {
|
|
|
|
fprintf(stderr, "max-height: ");
|
|
|
|
switch (style->max_height.max_height) {
|
|
|
|
case CSS_MAX_HEIGHT_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_MAX_HEIGHT_NONE:
|
|
|
|
fprintf(stderr, "none");
|
|
|
|
break;
|
|
|
|
case CSS_MAX_HEIGHT_LENGTH:
|
|
|
|
css_dump_length(&style->max_height.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_MAX_HEIGHT_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->max_height.value.percent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (style->max_width.max_width != CSS_MAX_WIDTH_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "max-width: ");
|
|
|
|
switch (style->max_width.max_width) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MAX_WIDTH_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_MAX_WIDTH_NONE:
|
|
|
|
fprintf(stderr, "none");
|
|
|
|
break;
|
|
|
|
case CSS_MAX_WIDTH_LENGTH:
|
|
|
|
css_dump_length(&style->max_width.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_MAX_WIDTH_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->max_width.value.percent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->min_height.min_height != CSS_MIN_HEIGHT_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "min-height: ");
|
|
|
|
switch (style->min_height.min_height) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MIN_HEIGHT_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_MIN_HEIGHT_LENGTH:
|
|
|
|
css_dump_length(&style->min_height.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_MIN_HEIGHT_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->min_height.value.percent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->min_width.min_width != CSS_MIN_WIDTH_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "min-width: ");
|
|
|
|
switch (style->min_width.min_width) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_MIN_WIDTH_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_MIN_WIDTH_LENGTH:
|
|
|
|
css_dump_length(&style->min_width.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_MIN_WIDTH_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->min_width.value.percent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->orphans.orphans != CSS_ORPHANS_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "orphans: ");
|
|
|
|
switch (style->orphans.orphans) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_ORPHANS_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_ORPHANS_INTEGER:
|
|
|
|
fprintf(stderr, "%d",
|
|
|
|
style->orphans.value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->outline.color.color != CSS_OUTLINE_COLOR_NOT_SET ||
|
|
|
|
style->outline.width.width != CSS_BORDER_WIDTH_NOT_SET ||
|
|
|
|
style->outline.style != CSS_BORDER_STYLE_NOT_SET) {
|
|
|
|
fprintf(stderr, "outline:");
|
2004-08-01 18:13:47 +04:00
|
|
|
switch (style->outline.color.color) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_OUTLINE_COLOR_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_OUTLINE_COLOR_INVERT:
|
|
|
|
fprintf(stderr, " invert");
|
|
|
|
break;
|
|
|
|
case CSS_OUTLINE_COLOR_COLOR:
|
|
|
|
if (style->outline.color.value == TRANSPARENT)
|
|
|
|
fprintf(stderr, " transparent");
|
|
|
|
else if (style->outline.color.value == CSS_COLOR_NONE)
|
|
|
|
fprintf(stderr, " none");
|
|
|
|
else if (style->outline.color.value == CSS_COLOR_INHERIT)
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
else if (style->outline.color.value == CSS_COLOR_NOT_SET)
|
|
|
|
fprintf(stderr, " .");
|
|
|
|
else
|
|
|
|
fprintf(stderr, " #%.6lx", style->outline.color.value);
|
|
|
|
break;
|
|
|
|
case CSS_OUTLINE_COLOR_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
|
|
|
|
if (style->outline.style == CSS_BORDER_STYLE_UNKNOWN)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " UNKNOWN");
|
2005-01-11 22:39:49 +03:00
|
|
|
else if (style->outline.style == CSS_BORDER_STYLE_NOT_SET)
|
2005-05-22 03:30:19 +04:00
|
|
|
;
|
2005-01-11 22:39:49 +03:00
|
|
|
else
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, " %s",
|
2005-01-11 22:39:49 +03:00
|
|
|
css_border_style_name[style->outline.style]);
|
|
|
|
|
2004-08-01 18:13:47 +04:00
|
|
|
switch (style->outline.width.width) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_BORDER_WIDTH_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_BORDER_WIDTH_LENGTH:
|
2007-05-02 07:17:19 +04:00
|
|
|
fprintf(stderr, " ");
|
2005-05-22 03:30:19 +04:00
|
|
|
css_dump_length(&style->outline.width.value);
|
|
|
|
break;
|
|
|
|
case CSS_BORDER_WIDTH_NOT_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2004-07-17 00:22:31 +04:00
|
|
|
DUMP_KEYWORD(overflow, "overflow", css_overflow_name);
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->padding[0].padding != CSS_PADDING_NOT_SET ||
|
|
|
|
style->padding[1].padding != CSS_PADDING_NOT_SET ||
|
|
|
|
style->padding[2].padding != CSS_PADDING_NOT_SET ||
|
|
|
|
style->padding[3].padding != CSS_PADDING_NOT_SET) {
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "padding:");
|
|
|
|
for (i = 0; i != 4; i++) {
|
|
|
|
switch (style->padding[i].padding) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_PADDING_INHERIT:
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
break;
|
|
|
|
case CSS_PADDING_LENGTH:
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
css_dump_length(&style->padding[i].value.length);
|
|
|
|
break;
|
|
|
|
case CSS_PADDING_PERCENT:
|
|
|
|
fprintf(stderr, " %g%%",
|
|
|
|
style->padding[i].value.percent);
|
|
|
|
break;
|
|
|
|
case CSS_PADDING_NOT_SET:
|
|
|
|
fprintf(stderr, " .");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, " UNKNOWN");
|
|
|
|
break;
|
2004-05-01 21:48:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
DUMP_KEYWORD(page_break_after, "page-break-after",
|
|
|
|
css_page_break_after_name);
|
|
|
|
DUMP_KEYWORD(page_break_before, "page-break-before",
|
|
|
|
css_page_break_before_name);
|
|
|
|
DUMP_KEYWORD(page_break_inside, "page-break-inside",
|
|
|
|
css_page_break_inside_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
|
2004-08-02 01:56:47 +04:00
|
|
|
for (i = 0; i != 4; i++) {
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->pos[i].pos != CSS_POS_NOT_SET) {
|
2004-08-02 01:56:47 +04:00
|
|
|
switch (i) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case TOP:
|
|
|
|
fprintf(stderr, "top: ");
|
|
|
|
break;
|
|
|
|
case RIGHT:
|
|
|
|
fprintf(stderr, "right: ");
|
|
|
|
break;
|
|
|
|
case BOTTOM:
|
|
|
|
fprintf(stderr, "bottom: ");
|
|
|
|
break;
|
|
|
|
case LEFT:
|
|
|
|
fprintf(stderr, "left: ");
|
|
|
|
break;
|
2004-08-02 01:56:47 +04:00
|
|
|
}
|
|
|
|
switch (style->pos[i].pos) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_POS_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_POS_AUTO:
|
|
|
|
fprintf(stderr, "auto");
|
|
|
|
break;
|
|
|
|
case CSS_POS_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->pos[i].value.percent);
|
|
|
|
break;
|
|
|
|
case CSS_POS_LENGTH:
|
|
|
|
css_dump_length(&style->pos[i].value.length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-02 01:56:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
}
|
2004-08-02 01:56:47 +04:00
|
|
|
DUMP_KEYWORD(position, "position", css_position_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
|
|
|
|
DUMP_KEYWORD(table_layout, "table-layout", css_table_layout_name);
|
2004-05-01 21:48:38 +04:00
|
|
|
DUMP_KEYWORD(text_align, "text-align", css_text_align_name);
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->text_decoration != CSS_TEXT_DECORATION_NOT_SET) {
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "text-decoration:");
|
|
|
|
if (style->text_decoration == CSS_TEXT_DECORATION_NONE)
|
|
|
|
fprintf(stderr, " none");
|
|
|
|
if (style->text_decoration == CSS_TEXT_DECORATION_INHERIT)
|
|
|
|
fprintf(stderr, " inherit");
|
|
|
|
if (style->text_decoration & CSS_TEXT_DECORATION_UNDERLINE)
|
|
|
|
fprintf(stderr, " underline");
|
|
|
|
if (style->text_decoration & CSS_TEXT_DECORATION_OVERLINE)
|
|
|
|
fprintf(stderr, " overline");
|
|
|
|
if (style->text_decoration & CSS_TEXT_DECORATION_LINE_THROUGH)
|
|
|
|
fprintf(stderr, " line-through");
|
|
|
|
if (style->text_decoration & CSS_TEXT_DECORATION_BLINK)
|
|
|
|
fprintf(stderr, " blink");
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->text_indent.size != CSS_TEXT_INDENT_NOT_SET) {
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "text-indent: ");
|
|
|
|
switch (style->text_indent.size) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_TEXT_INDENT_LENGTH:
|
|
|
|
css_dump_length(&style->text_indent.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_TEXT_INDENT_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->text_indent.value.percent);
|
|
|
|
break;
|
|
|
|
case CSS_TEXT_INDENT_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-05-01 21:48:38 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
|
|
|
DUMP_KEYWORD(text_transform, "text-transform", css_text_transform_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
|
|
|
|
DUMP_KEYWORD(unicode_bidi, "unicode-bidi", css_unicode_bidi_name);
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->vertical_align.type != CSS_VERTICAL_ALIGN_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "vertical-align: ");
|
|
|
|
switch (style->vertical_align.type) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_VERTICAL_ALIGN_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_BASELINE:
|
|
|
|
fprintf(stderr, "baseline");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_SUB:
|
|
|
|
fprintf(stderr, "sub");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_SUPER:
|
|
|
|
fprintf(stderr, "super");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_TOP:
|
|
|
|
fprintf(stderr, "top");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_TEXT_TOP:
|
|
|
|
fprintf(stderr, "text-top");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_MIDDLE:
|
|
|
|
fprintf(stderr, "middle");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_BOTTOM:
|
|
|
|
fprintf(stderr, "bottom");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_TEXT_BOTTOM:
|
|
|
|
fprintf(stderr, "text-bottom");
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_LENGTH:
|
|
|
|
css_dump_length(&style->vertical_align.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_VERTICAL_ALIGN_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%",
|
|
|
|
style->vertical_align.value.percent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
DUMP_KEYWORD(visibility, "visibility", css_visibility_name);
|
2004-08-01 18:13:47 +04:00
|
|
|
DUMP_KEYWORD(white_space, "white-space", css_white_space_name);
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->widows.widows != CSS_WIDOWS_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "widows: ");
|
|
|
|
switch (style->widows.widows) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_WIDOWS_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_WIDOWS_INTEGER:
|
|
|
|
fprintf(stderr, "%d",
|
|
|
|
style->widows.value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->width.width != CSS_WIDTH_NOT_SET) {
|
2004-05-01 21:48:38 +04:00
|
|
|
fprintf(stderr, "width: ");
|
|
|
|
switch (style->width.width) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_WIDTH_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_WIDTH_AUTO:
|
|
|
|
fprintf(stderr, "auto");
|
|
|
|
break;
|
|
|
|
case CSS_WIDTH_LENGTH:
|
|
|
|
css_dump_length(&style->width.value.length);
|
|
|
|
break;
|
|
|
|
case CSS_WIDTH_PERCENT:
|
|
|
|
fprintf(stderr, "%g%%", style->width.value.percent);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-05-01 21:48:38 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->word_spacing.word_spacing != CSS_WORD_SPACING_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "word-spacing: ");
|
|
|
|
switch (style->word_spacing.word_spacing) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_WORD_SPACING_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_WORD_SPACING_NORMAL:
|
|
|
|
fprintf(stderr, "normal");
|
|
|
|
break;
|
|
|
|
case CSS_WORD_SPACING_LENGTH:
|
|
|
|
css_dump_length(&style->word_spacing.length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
|
|
|
|
2005-05-22 03:30:19 +04:00
|
|
|
if (style->z_index.z_index != CSS_Z_INDEX_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
fprintf(stderr, "z-index: ");
|
|
|
|
switch (style->z_index.z_index) {
|
2005-05-22 03:30:19 +04:00
|
|
|
case CSS_Z_INDEX_INHERIT:
|
|
|
|
fprintf(stderr, "inherit");
|
|
|
|
break;
|
|
|
|
case CSS_Z_INDEX_AUTO:
|
|
|
|
fprintf(stderr, "auto");
|
|
|
|
break;
|
|
|
|
case CSS_Z_INDEX_INTEGER:
|
|
|
|
fprintf(stderr, "%d",
|
|
|
|
style->z_index.value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "UNKNOWN");
|
|
|
|
break;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
fprintf(stderr, "; ");
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
|
2003-04-06 01:38:06 +04:00
|
|
|
fprintf(stderr, "}");
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Dump a css_length to stderr.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_dump_length(const struct css_length * const length)
|
|
|
|
{
|
2007-10-28 20:01:53 +03:00
|
|
|
if (fabs(length->value) < 0.0001)
|
2005-05-22 03:30:19 +04:00
|
|
|
fprintf(stderr, "0");
|
|
|
|
else
|
|
|
|
fprintf(stderr, "%g%s", length->value,
|
|
|
|
css_unit_name[length->unit]);
|
2004-05-01 21:48:38 +04:00
|
|
|
}
|
|
|
|
|
2008-01-31 04:47:57 +03:00
|
|
|
/**
|
|
|
|
* Dump a complete css_working_stylesheet to stderr in CSS syntax.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_dump_working_stylesheet(const struct css_working_stylesheet *ws)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i != HASH_SIZE; i++) {
|
|
|
|
/*fprintf(stderr, "hash %i:\n", i);*/
|
|
|
|
for (j = 0; ws->rule[i][j]; j++) {
|
|
|
|
css_dump_selector(ws->rule[i][j]);
|
|
|
|
fprintf(stderr, " <%lx> ", ws->rule[i][j]->specificity);
|
|
|
|
css_dump_style(ws->rule[i][j]->style);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-05-01 21:48:38 +04:00
|
|
|
|
2008-02-25 19:37:48 +03:00
|
|
|
/**
|
2008-02-25 20:08:09 +03:00
|
|
|
* Set all members to false
|
2008-02-25 19:37:48 +03:00
|
|
|
*/
|
|
|
|
void css_importance_reset(struct css_importance *i) {
|
2008-02-25 20:08:09 +03:00
|
|
|
i->background_color = false;
|
|
|
|
i->background_image = false;
|
|
|
|
i->border_spacing = false;
|
|
|
|
i->color = false;
|
|
|
|
i->height = false;
|
|
|
|
i->width = false;
|
2008-02-25 19:37:48 +03:00
|
|
|
|
|
|
|
/**< top, right, bottom, left */
|
|
|
|
for (int j = 0; j < 4; j++) {
|
2008-02-25 20:08:09 +03:00
|
|
|
i->border_color[j] = false;
|
|
|
|
i->border_style[j] = false;
|
|
|
|
i->border_width[j] = false;
|
|
|
|
i->margin[j] = false;
|
|
|
|
i->padding[j] = false;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Dump a complete css_stylesheet to stderr in CSS syntax.
|
|
|
|
*/
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
void css_dump_stylesheet(const struct css_stylesheet * stylesheet)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2004-05-01 21:48:38 +04:00
|
|
|
struct css_selector *r;
|
2003-04-06 01:38:06 +04:00
|
|
|
for (i = 0; i != HASH_SIZE; i++) {
|
2003-10-16 16:43:53 +04:00
|
|
|
/*fprintf(stderr, "hash %i:\n", i);*/
|
2003-04-06 01:38:06 +04:00
|
|
|
for (r = stylesheet->rule[i]; r != 0; r = r->next) {
|
2004-05-01 21:48:38 +04:00
|
|
|
css_dump_selector(r);
|
|
|
|
fprintf(stderr, " <%lx> ", r->specificity);
|
2003-04-06 01:38:06 +04:00
|
|
|
css_dump_style(r->style);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
/**
|
2004-05-01 21:48:38 +04:00
|
|
|
* Dump a css_selector to stderr in CSS syntax.
|
2003-04-04 19:19:32 +04:00
|
|
|
*/
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
void css_dump_selector(const struct css_selector *r)
|
|
|
|
{
|
|
|
|
struct css_selector *m;
|
|
|
|
|
|
|
|
if (r->combiner)
|
|
|
|
css_dump_selector(r->combiner);
|
|
|
|
|
|
|
|
switch (r->comb) {
|
|
|
|
case CSS_COMB_NONE: break;
|
|
|
|
case CSS_COMB_ANCESTOR: fprintf(stderr, " "); break;
|
|
|
|
case CSS_COMB_PARENT: fprintf(stderr, " > "); break;
|
|
|
|
case CSS_COMB_PRECEDED: fprintf(stderr, " + "); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r->data)
|
|
|
|
fprintf(stderr, "%.*s", r->data_length, r->data);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "*");
|
|
|
|
|
|
|
|
for (m = r->detail; m; m = m->next) {
|
|
|
|
switch (m->type) {
|
|
|
|
case CSS_SELECTOR_ID:
|
|
|
|
fprintf(stderr, "#%.*s",
|
|
|
|
m->data_length, m->data);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_CLASS:
|
|
|
|
fprintf(stderr, ".%.*s",
|
|
|
|
m->data_length, m->data);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB:
|
|
|
|
fprintf(stderr, "[%.*s]",
|
|
|
|
m->data_length, m->data);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB_EQ:
|
|
|
|
fprintf(stderr, "[%.*s=%.*s]",
|
|
|
|
m->data_length, m->data,
|
|
|
|
m->data2_length, m->data2);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB_INC:
|
|
|
|
fprintf(stderr, "[%.*s~=%.*s]",
|
|
|
|
m->data_length, m->data,
|
|
|
|
m->data2_length, m->data2);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB_DM:
|
|
|
|
fprintf(stderr, "[%.*s|=%.*s]",
|
|
|
|
m->data_length, m->data,
|
|
|
|
m->data2_length, m->data2);
|
2004-07-31 01:53:52 +04:00
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB_PRE:
|
|
|
|
fprintf(stderr, "[%.*s^=%.*s]",
|
|
|
|
m->data_length, m->data,
|
|
|
|
m->data2_length, m->data2);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB_SUF:
|
|
|
|
fprintf(stderr, "[%.*s$=%.*s]",
|
|
|
|
m->data_length, m->data,
|
|
|
|
m->data2_length, m->data2);
|
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_ATTRIB_SUB:
|
|
|
|
fprintf(stderr, "[%.*s*=%.*s]",
|
|
|
|
m->data_length, m->data,
|
|
|
|
m->data2_length, m->data2);
|
2004-05-01 21:48:38 +04:00
|
|
|
break;
|
|
|
|
case CSS_SELECTOR_PSEUDO:
|
|
|
|
fprintf(stderr, ":%.*s",
|
|
|
|
m->data_length, m->data);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "(unexpected detail)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cascade styles.
|
|
|
|
*
|
2008-02-25 19:37:48 +03:00
|
|
|
* \param style css_style to modify
|
|
|
|
* \param apply css_style to cascade onto style
|
|
|
|
* \param author updated to indicate which properties have greater
|
|
|
|
* than author level CSS importance. (NULL if
|
|
|
|
* importance isn't required.)
|
2004-05-01 21:48:38 +04:00
|
|
|
*
|
2005-01-11 22:39:49 +03:00
|
|
|
* Attributes which have the value 'inherit' or 'unset' in apply are
|
|
|
|
* unchanged in style.
|
2004-05-01 21:48:38 +04:00
|
|
|
* Other attributes are copied to style, calculating percentages relative to
|
|
|
|
* style where applicable.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_cascade(struct css_style * const style,
|
2008-02-25 19:37:48 +03:00
|
|
|
const struct css_style * const apply,
|
|
|
|
struct css_importance * const author)
|
2003-04-04 19:19:32 +04:00
|
|
|
{
|
2004-02-02 03:22:59 +03:00
|
|
|
unsigned int i;
|
2003-04-04 19:19:32 +04:00
|
|
|
float f;
|
|
|
|
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_attachment !=
|
|
|
|
CSS_BACKGROUND_ATTACHMENT_INHERIT &&
|
|
|
|
apply->background_attachment !=
|
|
|
|
CSS_BACKGROUND_ATTACHMENT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->background_attachment = apply->background_attachment;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_color != CSS_COLOR_INHERIT &&
|
|
|
|
apply->background_color != CSS_COLOR_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->background_color = apply->background_color;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_image.type != CSS_BACKGROUND_IMAGE_INHERIT &&
|
|
|
|
apply->background_image.type !=
|
2005-01-16 03:48:47 +03:00
|
|
|
CSS_BACKGROUND_IMAGE_NOT_SET)
|
2004-06-09 23:55:06 +04:00
|
|
|
style->background_image = apply->background_image;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_repeat != CSS_BACKGROUND_REPEAT_INHERIT &&
|
|
|
|
apply->background_repeat !=
|
|
|
|
CSS_BACKGROUND_REPEAT_NOT_SET)
|
2004-06-09 23:55:06 +04:00
|
|
|
style->background_repeat = apply->background_repeat;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->border_collapse != CSS_BORDER_COLLAPSE_INHERIT &&
|
|
|
|
apply->border_collapse != CSS_BORDER_COLLAPSE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->border_collapse = apply->border_collapse;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->border_spacing.border_spacing !=
|
|
|
|
CSS_BORDER_SPACING_INHERIT &&
|
|
|
|
apply->border_spacing.border_spacing !=
|
|
|
|
CSS_BORDER_SPACING_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->border_spacing = apply->border_spacing;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->caption_side != CSS_CAPTION_SIDE_INHERIT &&
|
|
|
|
apply->caption_side != CSS_CAPTION_SIDE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->caption_side = apply->caption_side;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->clear != CSS_CLEAR_INHERIT &&
|
|
|
|
apply->clear != CSS_CLEAR_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->clear = apply->clear;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->color != CSS_COLOR_INHERIT &&
|
|
|
|
apply->color != CSS_COLOR_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->color = apply->color;
|
2005-01-17 00:39:21 +03:00
|
|
|
if (apply->content.type != CSS_CONTENT_INHERIT &&
|
|
|
|
apply->content.type != CSS_CONTENT_NOT_SET)
|
|
|
|
style->content = apply->content;
|
|
|
|
if (apply->counter_reset.type != CSS_COUNTER_RESET_INHERIT &&
|
|
|
|
apply->counter_reset.type != CSS_COUNTER_RESET_NOT_SET)
|
|
|
|
style->counter_reset = apply->counter_reset;
|
|
|
|
if (apply->counter_increment.type != CSS_COUNTER_INCREMENT_INHERIT &&
|
|
|
|
apply->counter_increment.type != CSS_COUNTER_INCREMENT_NOT_SET)
|
|
|
|
style->counter_increment = apply->counter_increment;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->cursor != CSS_CURSOR_INHERIT &&
|
|
|
|
apply->cursor != CSS_CURSOR_NOT_SET)
|
2004-04-03 03:12:26 +04:00
|
|
|
style->cursor = apply->cursor;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->direction != CSS_DIRECTION_INHERIT &&
|
|
|
|
apply->direction != CSS_DIRECTION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->direction = apply->direction;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->display != CSS_DISPLAY_INHERIT &&
|
|
|
|
apply->display != CSS_DISPLAY_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->display = apply->display;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->empty_cells != CSS_EMPTY_CELLS_INHERIT &&
|
|
|
|
apply->empty_cells != CSS_EMPTY_CELLS_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->empty_cells = apply->empty_cells;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->float_ != CSS_FLOAT_INHERIT &&
|
|
|
|
apply->float_ != CSS_FLOAT_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->float_ = apply->float_;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_family != CSS_FONT_FAMILY_INHERIT &&
|
|
|
|
apply->font_family != CSS_FONT_FAMILY_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->font_family = apply->font_family;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_style != CSS_FONT_STYLE_INHERIT &&
|
|
|
|
apply->font_style != CSS_FONT_STYLE_NOT_SET)
|
2003-10-08 01:34:27 +04:00
|
|
|
style->font_style = apply->font_style;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_variant != CSS_FONT_VARIANT_INHERIT &&
|
|
|
|
apply->font_variant != CSS_FONT_VARIANT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->font_variant = apply->font_variant;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_weight != CSS_FONT_WEIGHT_INHERIT &&
|
|
|
|
apply->font_weight != CSS_FONT_WEIGHT_NOT_SET)
|
2003-10-08 01:34:27 +04:00
|
|
|
style->font_weight = apply->font_weight;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->height.height != CSS_HEIGHT_INHERIT &&
|
|
|
|
apply->height.height != CSS_HEIGHT_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->height = apply->height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->letter_spacing.letter_spacing !=
|
|
|
|
CSS_LETTER_SPACING_INHERIT &&
|
|
|
|
apply->letter_spacing.letter_spacing !=
|
|
|
|
CSS_LETTER_SPACING_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->letter_spacing = apply->letter_spacing;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->line_height.size != CSS_LINE_HEIGHT_INHERIT &&
|
|
|
|
apply->line_height.size != CSS_LINE_HEIGHT_NOT_SET)
|
2003-07-20 17:13:09 +04:00
|
|
|
style->line_height = apply->line_height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->list_style_image.type != CSS_LIST_STYLE_IMAGE_INHERIT &&
|
|
|
|
apply->list_style_image.type !=
|
|
|
|
CSS_LIST_STYLE_IMAGE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->list_style_image = apply->list_style_image;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->list_style_position != CSS_LIST_STYLE_POSITION_INHERIT &&
|
|
|
|
apply->list_style_position !=
|
|
|
|
CSS_LIST_STYLE_POSITION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->list_style_position = apply->list_style_position;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->list_style_type != CSS_LIST_STYLE_TYPE_INHERIT &&
|
|
|
|
apply->list_style_type != CSS_LIST_STYLE_TYPE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->list_style_type = apply->list_style_type;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->max_height.max_height != CSS_MAX_HEIGHT_INHERIT &&
|
|
|
|
apply->max_height.max_height != CSS_MAX_HEIGHT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->max_height = apply->max_height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->max_width.max_width != CSS_MAX_WIDTH_INHERIT &&
|
|
|
|
apply->max_width.max_width != CSS_MAX_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->max_width = apply->max_width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->min_height.min_height != CSS_MIN_HEIGHT_INHERIT &&
|
|
|
|
apply->min_height.min_height != CSS_MIN_HEIGHT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->min_height = apply->min_height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->min_width.min_width != CSS_MIN_WIDTH_INHERIT &&
|
|
|
|
apply->min_width.min_width != CSS_MIN_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->min_width = apply->min_width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->orphans.orphans != CSS_ORPHANS_INHERIT &&
|
|
|
|
apply->orphans.orphans != CSS_ORPHANS_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->orphans = apply->orphans;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->overflow != CSS_OVERFLOW_INHERIT &&
|
|
|
|
apply->overflow != CSS_OVERFLOW_NOT_SET)
|
2004-07-17 00:22:31 +04:00
|
|
|
style->overflow = apply->overflow;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->page_break_after != CSS_PAGE_BREAK_AFTER_INHERIT &&
|
|
|
|
apply->page_break_after !=
|
|
|
|
CSS_PAGE_BREAK_AFTER_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->page_break_after = apply->page_break_after;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->page_break_before != CSS_PAGE_BREAK_BEFORE_INHERIT &&
|
|
|
|
apply->page_break_before !=
|
|
|
|
CSS_PAGE_BREAK_BEFORE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->page_break_before = apply->page_break_before;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->page_break_inside != CSS_PAGE_BREAK_INSIDE_INHERIT &&
|
|
|
|
apply->page_break_inside !=
|
|
|
|
CSS_PAGE_BREAK_INSIDE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->page_break_inside = apply->page_break_inside;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->position != CSS_POSITION_INHERIT &&
|
|
|
|
apply->position != CSS_POSITION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->position = apply->position;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->table_layout != CSS_TABLE_LAYOUT_INHERIT &&
|
|
|
|
apply->table_layout != CSS_TABLE_LAYOUT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->table_layout = apply->table_layout;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_align != CSS_TEXT_ALIGN_INHERIT &&
|
|
|
|
apply->text_align != CSS_TEXT_ALIGN_NOT_SET)
|
2003-04-04 19:19:32 +04:00
|
|
|
style->text_align = apply->text_align;
|
2004-08-01 18:13:47 +04:00
|
|
|
/* text-decoration: approximate CSS 2.1 by inheriting into inline elements */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_decoration != CSS_TEXT_DECORATION_INHERIT &&
|
|
|
|
apply->text_decoration != CSS_TEXT_DECORATION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->text_decoration = apply->text_decoration;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_indent.size != CSS_TEXT_INDENT_INHERIT &&
|
|
|
|
apply->text_indent.size != CSS_TEXT_INDENT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->text_indent = apply->text_indent;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_transform != CSS_TEXT_TRANSFORM_INHERIT &&
|
|
|
|
apply->text_transform != CSS_TEXT_TRANSFORM_NOT_SET)
|
2004-02-01 00:18:44 +03:00
|
|
|
style->text_transform = apply->text_transform;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->unicode_bidi != CSS_UNICODE_BIDI_INHERIT &&
|
|
|
|
apply->unicode_bidi != CSS_UNICODE_BIDI_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->unicode_bidi = apply->unicode_bidi;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->vertical_align.type != CSS_VERTICAL_ALIGN_INHERIT &&
|
|
|
|
apply->vertical_align.type !=
|
|
|
|
CSS_VERTICAL_ALIGN_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->vertical_align = apply->vertical_align;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->visibility != CSS_VISIBILITY_INHERIT &&
|
|
|
|
apply->visibility != CSS_VISIBILITY_NOT_SET)
|
2003-11-05 19:25:35 +03:00
|
|
|
style->visibility = apply->visibility;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->white_space != CSS_WHITE_SPACE_INHERIT &&
|
|
|
|
apply->white_space != CSS_WHITE_SPACE_NOT_SET)
|
2003-10-08 01:34:27 +04:00
|
|
|
style->white_space = apply->white_space;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->widows.widows != CSS_WIDOWS_INHERIT &&
|
|
|
|
apply->widows.widows != CSS_WIDOWS_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->widows = apply->widows;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->width.width != CSS_WIDTH_INHERIT &&
|
|
|
|
apply->width.width != CSS_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->width = apply->width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->word_spacing.word_spacing != CSS_WORD_SPACING_INHERIT &&
|
|
|
|
apply->word_spacing.word_spacing !=
|
|
|
|
CSS_WORD_SPACING_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->word_spacing = apply->word_spacing;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->z_index.z_index != CSS_Z_INDEX_INHERIT &&
|
|
|
|
apply->z_index.z_index != CSS_Z_INDEX_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->z_index = apply->z_index;
|
|
|
|
|
|
|
|
|
|
|
|
/* clip */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->clip.clip != CSS_CLIP_INHERIT &&
|
|
|
|
apply->clip.clip != CSS_CLIP_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
for (i = 0; i != 4; i++) {
|
|
|
|
style->clip.rect[i] = apply->clip.rect[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
|
2004-06-09 23:55:06 +04:00
|
|
|
/* background-position */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_position.horz.pos !=
|
|
|
|
CSS_BACKGROUND_POSITION_INHERIT &&
|
|
|
|
apply->background_position.horz.pos !=
|
|
|
|
CSS_BACKGROUND_POSITION_NOT_SET) {
|
|
|
|
style->background_position.horz =
|
|
|
|
apply->background_position.horz;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_position.vert.pos !=
|
|
|
|
CSS_BACKGROUND_POSITION_INHERIT &&
|
|
|
|
apply->background_position.vert.pos !=
|
|
|
|
CSS_BACKGROUND_POSITION_NOT_SET) {
|
|
|
|
style->background_position.vert =
|
|
|
|
apply->background_position.vert;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
2004-06-09 23:55:06 +04:00
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
/* font-size */
|
|
|
|
f = apply->font_size.value.percent / 100;
|
|
|
|
switch (apply->font_size.size) {
|
|
|
|
case CSS_FONT_SIZE_ABSOLUTE:
|
|
|
|
style->font_size = apply->font_size;
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_LENGTH:
|
|
|
|
switch (apply->font_size.value.length.unit) {
|
|
|
|
case CSS_UNIT_EM:
|
|
|
|
f = apply->font_size.value.length.value;
|
|
|
|
break;
|
|
|
|
case CSS_UNIT_EX:
|
|
|
|
f = apply->font_size.value.length.value * 0.6 /*?*/;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
style->font_size = apply->font_size;
|
|
|
|
}
|
|
|
|
if ((apply->font_size.value.length.unit != CSS_UNIT_EM) &&
|
|
|
|
(apply->font_size.value.length.unit != CSS_UNIT_EX))
|
|
|
|
break;
|
|
|
|
/* drop through if EM or EX */
|
|
|
|
case CSS_FONT_SIZE_PERCENT:
|
|
|
|
switch (style->font_size.size) {
|
|
|
|
case CSS_FONT_SIZE_ABSOLUTE:
|
|
|
|
style->font_size.value.absolute *= f;
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_LENGTH:
|
|
|
|
style->font_size.value.length.value *= f;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("attempting percentage of unknown font-size");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CSS_FONT_SIZE_INHERIT:
|
2005-01-11 22:39:49 +03:00
|
|
|
case CSS_FONT_SIZE_NOT_SET:
|
2003-04-04 19:19:32 +04:00
|
|
|
default: /* leave unchanged */
|
|
|
|
break;
|
|
|
|
}
|
2004-02-02 03:22:59 +03:00
|
|
|
|
2004-08-01 18:13:47 +04:00
|
|
|
/* outline */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->outline.color.color != CSS_OUTLINE_COLOR_INHERIT &&
|
|
|
|
apply->outline.color.color !=
|
|
|
|
CSS_OUTLINE_COLOR_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->outline.color = apply->outline.color;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->outline.width.width != CSS_BORDER_WIDTH_INHERIT &&
|
|
|
|
apply->outline.width.width != CSS_BORDER_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->outline.width = apply->outline.width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->outline.style != CSS_BORDER_STYLE_INHERIT &&
|
|
|
|
apply->outline.style != CSS_BORDER_STYLE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->outline.style = apply->outline.style;
|
|
|
|
|
2004-08-02 01:56:47 +04:00
|
|
|
/* borders, margins, padding and box position */
|
2004-02-02 03:22:59 +03:00
|
|
|
for (i = 0; i != 4; i++) {
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->border[i].color != CSS_COLOR_INHERIT &&
|
|
|
|
apply->border[i].color != CSS_COLOR_NOT_SET)
|
2004-02-02 03:22:59 +03:00
|
|
|
style->border[i].color = apply->border[i].color;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->border[i].width.width !=
|
|
|
|
CSS_BORDER_WIDTH_INHERIT &&
|
|
|
|
apply->border[i].width.width !=
|
|
|
|
CSS_BORDER_WIDTH_NOT_SET)
|
2004-02-02 03:22:59 +03:00
|
|
|
style->border[i].width = apply->border[i].width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->border[i].style != CSS_BORDER_STYLE_INHERIT &&
|
|
|
|
apply->border[i].style !=
|
|
|
|
CSS_BORDER_STYLE_NOT_SET)
|
2004-02-02 03:22:59 +03:00
|
|
|
style->border[i].style = apply->border[i].style;
|
|
|
|
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->margin[i].margin != CSS_MARGIN_INHERIT &&
|
|
|
|
apply->margin[i].margin != CSS_MARGIN_NOT_SET)
|
2004-02-02 03:22:59 +03:00
|
|
|
style->margin[i] = apply->margin[i];
|
|
|
|
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->padding[i].padding != CSS_PADDING_INHERIT &&
|
|
|
|
apply->padding[i].padding !=
|
|
|
|
CSS_PADDING_NOT_SET)
|
2004-02-02 03:22:59 +03:00
|
|
|
style->padding[i] = apply->padding[i];
|
2004-08-02 01:56:47 +04:00
|
|
|
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->pos[i].pos != CSS_POS_INHERIT &&
|
|
|
|
apply->pos[i].pos != CSS_POS_NOT_SET)
|
|
|
|
style->pos[i] = apply->pos[i];
|
2004-02-02 03:22:59 +03:00
|
|
|
}
|
2008-02-25 19:37:48 +03:00
|
|
|
|
|
|
|
/* Set author level CSS importance (used for HTML style attribute) */
|
|
|
|
if (author) {
|
|
|
|
if (apply->background_color != CSS_COLOR_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->background_color = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->background_image.type !=
|
|
|
|
CSS_BACKGROUND_IMAGE_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->background_image = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->border_spacing.border_spacing !=
|
|
|
|
CSS_BORDER_SPACING_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_spacing = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->color != CSS_COLOR_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->color = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->height.height != CSS_HEIGHT_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->height = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->width.width != CSS_WIDTH_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->width = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
|
|
|
|
for (i = 0; i != 4; i++) {
|
|
|
|
if (apply->border[i].color != CSS_COLOR_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_color[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->border[i].width.width !=
|
|
|
|
CSS_BORDER_WIDTH_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_width[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->border[i].style != CSS_BORDER_STYLE_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_style[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
|
|
|
|
if (apply->margin[i].margin != CSS_MARGIN_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->margin[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
|
|
|
|
if (apply->padding[i].padding != CSS_PADDING_NOT_SET)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->padding[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
|
|
|
}
|
2003-04-04 19:19:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Merge styles.
|
|
|
|
*
|
2008-02-25 19:37:48 +03:00
|
|
|
* \param style css_style to modify
|
|
|
|
* \param apply css_style to merge onto style
|
|
|
|
* \param specificity specificity of current CSS rule
|
|
|
|
* \param author updated to indicate which properties have greater than
|
|
|
|
* author level CSS importance
|
2004-05-01 21:48:38 +04:00
|
|
|
*
|
2005-01-11 22:39:49 +03:00
|
|
|
* Attributes which have the value 'unset' in apply are unchanged in style.
|
2004-05-01 21:48:38 +04:00
|
|
|
* Other attributes are copied to style, overwriting it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void css_merge(struct css_style * const style,
|
2008-02-25 19:37:48 +03:00
|
|
|
const struct css_style * const apply,
|
|
|
|
const unsigned long specificity,
|
|
|
|
struct css_importance * const author)
|
2003-04-06 01:38:06 +04:00
|
|
|
{
|
2004-02-02 03:22:59 +03:00
|
|
|
unsigned int i;
|
|
|
|
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_attachment != CSS_BACKGROUND_ATTACHMENT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->background_attachment = apply->background_attachment;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->background_color != CSS_COLOR_NOT_SET) {
|
2003-04-06 01:38:06 +04:00
|
|
|
style->background_color = apply->background_color;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->background_color = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
|
|
|
if (apply->background_image.type != CSS_BACKGROUND_IMAGE_NOT_SET) {
|
2004-06-09 23:55:06 +04:00
|
|
|
style->background_image = apply->background_image;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->background_image = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_repeat != CSS_BACKGROUND_REPEAT_NOT_SET)
|
2004-06-09 23:55:06 +04:00
|
|
|
style->background_repeat = apply->background_repeat;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->border_collapse != CSS_BORDER_COLLAPSE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->border_collapse = apply->border_collapse;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->border_spacing.border_spacing != CSS_BORDER_SPACING_NOT_SET){
|
2004-08-01 18:13:47 +04:00
|
|
|
style->border_spacing = apply->border_spacing;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_spacing = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->caption_side != CSS_CAPTION_SIDE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->caption_side = apply->caption_side;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->clear != CSS_CLEAR_NOT_SET)
|
2003-04-06 01:38:06 +04:00
|
|
|
style->clear = apply->clear;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->color != CSS_COLOR_NOT_SET) {
|
2003-04-06 01:38:06 +04:00
|
|
|
style->color = apply->color;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->color = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2005-01-17 00:39:21 +03:00
|
|
|
if (apply->content.type != CSS_CONTENT_NOT_SET)
|
|
|
|
style->content = apply->content;
|
|
|
|
if (apply->counter_reset.type != CSS_COUNTER_RESET_NOT_SET)
|
|
|
|
style->counter_reset = apply->counter_reset;
|
|
|
|
if (apply->counter_increment.type != CSS_COUNTER_INCREMENT_NOT_SET)
|
|
|
|
style->counter_increment = apply->counter_increment;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->cursor != CSS_CURSOR_NOT_SET)
|
2004-04-03 03:12:26 +04:00
|
|
|
style->cursor = apply->cursor;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->direction != CSS_DIRECTION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->direction = apply->direction;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->display != CSS_DISPLAY_NOT_SET)
|
2003-04-06 01:38:06 +04:00
|
|
|
style->display = apply->display;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->empty_cells != CSS_EMPTY_CELLS_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->empty_cells = apply->empty_cells;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->float_ != CSS_FLOAT_NOT_SET)
|
2003-04-06 01:38:06 +04:00
|
|
|
style->float_ = apply->float_;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_family != CSS_FONT_FAMILY_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->font_family = apply->font_family;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_size.size != CSS_FONT_SIZE_NOT_SET)
|
2003-10-08 01:34:27 +04:00
|
|
|
style->font_size = apply->font_size;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_style != CSS_FONT_STYLE_NOT_SET)
|
2003-10-08 01:34:27 +04:00
|
|
|
style->font_style = apply->font_style;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_variant != CSS_FONT_VARIANT_NOT_SET)
|
2004-01-31 01:28:32 +03:00
|
|
|
style->font_variant = apply->font_variant;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->font_weight != CSS_FONT_WEIGHT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->font_weight = apply->font_weight;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->height.height != CSS_HEIGHT_NOT_SET) {
|
2003-04-06 01:38:06 +04:00
|
|
|
style->height = apply->height;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->height = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->letter_spacing.letter_spacing != CSS_LETTER_SPACING_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->letter_spacing = apply->letter_spacing;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->line_height.size != CSS_LINE_HEIGHT_NOT_SET)
|
2003-07-20 17:13:09 +04:00
|
|
|
style->line_height = apply->line_height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->list_style_image.type != CSS_LIST_STYLE_IMAGE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->list_style_image = apply->list_style_image;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->list_style_position != CSS_LIST_STYLE_POSITION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->list_style_position = apply->list_style_position;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->list_style_type != CSS_LIST_STYLE_TYPE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->list_style_type = apply->list_style_type;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->max_height.max_height != CSS_MAX_HEIGHT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->max_height = apply->max_height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->max_width.max_width != CSS_MAX_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->max_width = apply->max_width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->min_height.min_height != CSS_MIN_HEIGHT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->min_height = apply->min_height;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->min_width.min_width != CSS_MIN_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->min_width = apply->min_width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->orphans.orphans != CSS_ORPHANS_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->orphans = apply->orphans;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->overflow != CSS_OVERFLOW_NOT_SET)
|
2004-07-17 00:22:31 +04:00
|
|
|
style->overflow = apply->overflow;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->page_break_after != CSS_PAGE_BREAK_AFTER_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->page_break_after = apply->page_break_after;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->page_break_before != CSS_PAGE_BREAK_BEFORE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->page_break_before = apply->page_break_before;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->page_break_inside != CSS_PAGE_BREAK_INSIDE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->page_break_inside = apply->page_break_inside;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->position != CSS_POSITION_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->position = apply->position;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->table_layout != CSS_TABLE_LAYOUT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->table_layout = apply->table_layout;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_align != CSS_TEXT_ALIGN_NOT_SET)
|
2003-04-06 01:38:06 +04:00
|
|
|
style->text_align = apply->text_align;
|
2004-08-01 18:13:47 +04:00
|
|
|
/* text-decoration: approximate CSS 2.1 by inheriting into inline elements */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_decoration != CSS_TEXT_DECORATION_NOT_SET)
|
2003-10-18 03:47:13 +04:00
|
|
|
style->text_decoration = apply->text_decoration;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_indent.size != CSS_TEXT_INDENT_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->text_indent = apply->text_indent;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->text_transform != CSS_TEXT_TRANSFORM_NOT_SET)
|
2004-02-01 00:18:44 +03:00
|
|
|
style->text_transform = apply->text_transform;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->unicode_bidi != CSS_UNICODE_BIDI_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->unicode_bidi = apply->unicode_bidi;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->vertical_align.type != CSS_VERTICAL_ALIGN_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->vertical_align = apply->vertical_align;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->visibility != CSS_VISIBILITY_NOT_SET)
|
2003-10-10 22:13:36 +04:00
|
|
|
style->visibility = apply->visibility;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->white_space != CSS_WHITE_SPACE_NOT_SET)
|
2003-10-08 01:34:27 +04:00
|
|
|
style->white_space = apply->white_space;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->widows.widows != CSS_WIDOWS_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->widows = apply->widows;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->width.width != CSS_WIDTH_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
style->width = apply->width;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->width = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->word_spacing.word_spacing != CSS_WORD_SPACING_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->word_spacing = apply->word_spacing;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->z_index.z_index != CSS_Z_INDEX_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->z_index = apply->z_index;
|
|
|
|
|
|
|
|
|
|
|
|
/* clip */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->clip.clip != CSS_CLIP_NOT_SET) {
|
2004-08-01 18:13:47 +04:00
|
|
|
for (i = 0; i != 4; i++) {
|
|
|
|
style->clip.rect[i] = apply->clip.rect[i];
|
|
|
|
}
|
|
|
|
}
|
2004-02-02 03:22:59 +03:00
|
|
|
|
2004-06-09 23:55:06 +04:00
|
|
|
/* background-position */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_position.horz.pos !=
|
|
|
|
CSS_BACKGROUND_POSITION_NOT_SET) {
|
|
|
|
style->background_position.horz =
|
|
|
|
apply->background_position.horz;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->background_position.vert.pos !=
|
|
|
|
CSS_BACKGROUND_POSITION_NOT_SET) {
|
|
|
|
style->background_position.vert =
|
|
|
|
apply->background_position.vert;
|
2004-08-01 18:13:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* outline */
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->outline.color.color != CSS_OUTLINE_COLOR_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->outline.color = apply->outline.color;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->outline.width.width != CSS_BORDER_WIDTH_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->outline.width = apply->outline.width;
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->outline.style != CSS_BORDER_STYLE_NOT_SET)
|
2004-08-01 18:13:47 +04:00
|
|
|
style->outline.style = apply->outline.style;
|
2004-06-09 23:55:06 +04:00
|
|
|
|
2004-08-02 01:56:47 +04:00
|
|
|
/* borders, margins, padding and box position */
|
2004-02-02 03:22:59 +03:00
|
|
|
for (i = 0; i != 4; i++) {
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->border[i].color != CSS_COLOR_NOT_SET) {
|
2004-02-02 03:22:59 +03:00
|
|
|
style->border[i].color = apply->border[i].color;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_color[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
|
|
|
if (apply->border[i].width.width != CSS_BORDER_WIDTH_NOT_SET) {
|
2004-02-02 03:22:59 +03:00
|
|
|
style->border[i].width = apply->border[i].width;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_width[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
|
|
|
if (apply->border[i].style != CSS_BORDER_STYLE_NOT_SET) {
|
2004-02-02 03:22:59 +03:00
|
|
|
style->border[i].style = apply->border[i].style;
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->border_style[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2004-02-02 03:22:59 +03:00
|
|
|
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->margin[i].margin != CSS_MARGIN_NOT_SET) {
|
2004-02-02 03:22:59 +03:00
|
|
|
style->margin[i] = apply->margin[i];
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->margin[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2004-02-02 03:22:59 +03:00
|
|
|
|
2008-02-25 19:37:48 +03:00
|
|
|
if (apply->padding[i].padding != CSS_PADDING_NOT_SET) {
|
2004-02-02 03:22:59 +03:00
|
|
|
style->padding[i] = apply->padding[i];
|
2008-02-25 19:37:48 +03:00
|
|
|
if (specificity >= CSS_SPECIFICITY_AUTHOR)
|
2008-02-25 20:08:09 +03:00
|
|
|
author->padding[i] = true;
|
2008-02-25 19:37:48 +03:00
|
|
|
}
|
2004-08-02 01:56:47 +04:00
|
|
|
|
2005-01-11 22:39:49 +03:00
|
|
|
if (apply->pos[i].pos != CSS_POS_NOT_SET)
|
2004-08-02 01:56:47 +04:00
|
|
|
style->pos[i] = apply->pos[i];
|
2004-02-02 03:22:59 +03:00
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
/**
|
|
|
|
* Calculate a hash for an element name.
|
|
|
|
*
|
|
|
|
* The hash is case-insensitive.
|
|
|
|
*/
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2004-05-01 21:48:38 +04:00
|
|
|
unsigned int css_hash(const char *s, int length)
|
2003-04-05 19:35:55 +04:00
|
|
|
{
|
2004-05-01 21:48:38 +04:00
|
|
|
int i;
|
2003-04-05 19:35:55 +04:00
|
|
|
unsigned int z = 0;
|
2003-04-06 01:38:06 +04:00
|
|
|
if (s == 0)
|
|
|
|
return 0;
|
2004-05-01 21:48:38 +04:00
|
|
|
for (i = 0; i != length; i++)
|
|
|
|
z += s[i] & 0x1f; /* lower 5 bits, case insensitive */
|
2003-04-06 01:38:06 +04:00
|
|
|
return (z % (HASH_SIZE - 1)) + 1;
|
2003-04-05 19:35:55 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-10 01:33:01 +04:00
|
|
|
/**
|
2004-02-14 02:07:42 +03:00
|
|
|
* Convert a struct css_length to pixels.
|
2003-07-10 01:33:01 +04:00
|
|
|
*/
|
|
|
|
|
2005-02-20 02:40:15 +03:00
|
|
|
float css_len2px(const struct css_length *length,
|
|
|
|
const struct css_style *style)
|
2003-07-10 01:33:01 +04:00
|
|
|
{
|
2008-02-02 03:13:19 +03:00
|
|
|
struct css_length font;
|
|
|
|
font.unit = CSS_UNIT_PT;
|
|
|
|
|
|
|
|
assert(!((length->unit == CSS_UNIT_EM || length->unit == CSS_UNIT_EX) &&
|
|
|
|
style == 0));
|
2003-07-10 01:33:01 +04:00
|
|
|
switch (length->unit) {
|
2008-02-02 03:13:19 +03:00
|
|
|
case CSS_UNIT_EM:
|
|
|
|
if ((font.value = css_len2pt(&style->
|
|
|
|
font_size.value.length, style)) <
|
|
|
|
option_font_min_size / 10) {
|
|
|
|
font.value = option_font_min_size / 10;
|
|
|
|
return length->value * css_len2px(&font,
|
|
|
|
style);
|
|
|
|
} else
|
|
|
|
return length->value * css_len2px(&style->
|
|
|
|
font_size.value.length, 0);
|
|
|
|
case CSS_UNIT_EX:
|
|
|
|
if ((font.value = css_len2pt(&style->
|
|
|
|
font_size.value.length, style)) <
|
|
|
|
option_font_min_size / 10) {
|
|
|
|
font.value = option_font_min_size / 10;
|
|
|
|
return length->value * css_len2px(&font,
|
|
|
|
style) * 0.6;
|
|
|
|
} else
|
|
|
|
return length->value * css_len2px(&style->
|
|
|
|
font_size.value.length, 0) * 0.6;
|
2003-07-10 01:33:01 +04:00
|
|
|
case CSS_UNIT_PX: return length->value;
|
2008-02-02 03:13:19 +03:00
|
|
|
/* We assume the screen and any other output has the same dpi */
|
2007-08-19 14:08:49 +04:00
|
|
|
case CSS_UNIT_IN: return length->value * css_screen_dpi;
|
|
|
|
case CSS_UNIT_CM: return length->value * css_screen_dpi / 2.54;
|
|
|
|
case CSS_UNIT_MM: return length->value * css_screen_dpi / 25.4;
|
2005-07-31 19:55:36 +04:00
|
|
|
/* 1pt = 1in/72 */
|
|
|
|
case CSS_UNIT_PT: return length->value * 1.25;
|
|
|
|
/* 1pc = 1pt * 12 */
|
|
|
|
case CSS_UNIT_PC: return length->value * 15.0;
|
2003-07-10 01:33:01 +04:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-09 22:04:13 +03:00
|
|
|
/**
|
|
|
|
* Convert a struct css_length to points.
|
|
|
|
*/
|
|
|
|
|
|
|
|
float css_len2pt(const struct css_length *length,
|
|
|
|
const struct css_style *style)
|
|
|
|
{
|
|
|
|
assert(!((length->unit == CSS_UNIT_EM || length->unit == CSS_UNIT_EX) && style == 0));
|
|
|
|
switch (length->unit) {
|
|
|
|
case CSS_UNIT_EM: return length->value * css_len2pt(&style->font_size.value.length, 0);
|
|
|
|
case CSS_UNIT_EX: return length->value * css_len2pt(&style->font_size.value.length, 0) * 0.6;
|
2007-08-19 14:08:49 +04:00
|
|
|
/* We assume the screen and any other output has the same dpi */
|
|
|
|
case CSS_UNIT_PX: return length->value * css_screen_dpi / 72;
|
2006-03-09 22:04:13 +03:00
|
|
|
/* 1pt = 1in/72 */
|
|
|
|
case CSS_UNIT_IN: return length->value * 72;
|
|
|
|
case CSS_UNIT_CM: return length->value * 28.452756;
|
|
|
|
case CSS_UNIT_MM: return length->value * 2.8452756;
|
|
|
|
case CSS_UNIT_PT: return length->value;
|
|
|
|
/* 1pc = 1pt * 12 */
|
|
|
|
case CSS_UNIT_PC: return length->value * 12.0;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2003-04-05 19:35:55 +04:00
|
|
|
|
2005-04-14 23:54:24 +04:00
|
|
|
/**
|
|
|
|
* Return the most 'eyecatching' border.
|
|
|
|
*
|
|
|
|
* \return the most eyecatching border, favoured towards test2
|
|
|
|
*/
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-04-14 23:54:24 +04:00
|
|
|
struct css_border *css_eyecatching_border(struct css_border *test1,
|
|
|
|
struct css_style *style1, struct css_border *test2,
|
|
|
|
struct css_style *style2)
|
2005-05-22 03:30:19 +04:00
|
|
|
{
|
2005-04-14 23:54:24 +04:00
|
|
|
float width1, width2;
|
|
|
|
int impact = 0;
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-04-14 23:54:24 +04:00
|
|
|
assert(test1);
|
|
|
|
assert(style1);
|
|
|
|
assert(test2);
|
|
|
|
assert(style2);
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-04-14 23:54:24 +04:00
|
|
|
/* hidden border styles always win, none always loses */
|
|
|
|
if ((test1->style == CSS_BORDER_STYLE_HIDDEN) ||
|
|
|
|
(test2->style == CSS_BORDER_STYLE_NONE))
|
|
|
|
return test1;
|
|
|
|
if ((test2->style == CSS_BORDER_STYLE_HIDDEN) ||
|
|
|
|
(test1->style == CSS_BORDER_STYLE_NONE))
|
|
|
|
return test2;
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-04-14 23:54:24 +04:00
|
|
|
/* the widest border wins */
|
|
|
|
width1 = css_len2px(&test1->width.value, style1);
|
|
|
|
width2 = css_len2px(&test2->width.value, style2);
|
|
|
|
if (width1 > width2)
|
|
|
|
return test1;
|
|
|
|
if (width2 > width1)
|
|
|
|
return test2;
|
2005-05-22 03:30:19 +04:00
|
|
|
|
2005-04-14 23:54:24 +04:00
|
|
|
/* the closest to a solid line wins */
|
|
|
|
switch (test1->style) {
|
|
|
|
case CSS_BORDER_STYLE_DOUBLE:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_SOLID:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_DASHED:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_DOTTED:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_RIDGE:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_OUTSET:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_GROOVE:
|
|
|
|
impact++;
|
|
|
|
case CSS_BORDER_STYLE_INSET:
|
|
|
|
impact++;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (test2->style) {
|
|
|
|
case CSS_BORDER_STYLE_DOUBLE:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_SOLID:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_DASHED:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_DOTTED:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_RIDGE:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_OUTSET:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_GROOVE:
|
|
|
|
impact--;
|
|
|
|
case CSS_BORDER_STYLE_INSET:
|
|
|
|
impact--;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (impact > 0)
|
|
|
|
return test1;
|
|
|
|
return test2;
|
|
|
|
}
|
|
|
|
|
2003-04-04 19:19:32 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
const char data[] = "h1 { blah: foo; display: block; }"
|
|
|
|
"h1.c1 h2#id1 + h3, h4 h5.c2#id2 { size: 100mm; color: red }"
|
|
|
|
"p { background-color: #123; clear: left; color: #ff0000; display: block;"
|
|
|
|
"float: left; font-size: 150%; height: blah; line-height: 100;"
|
|
|
|
"text-align: left right; width: 90%;}";
|
|
|
|
struct content c;
|
|
|
|
css_create(&c);
|
|
|
|
css_process_data(&c, data, 24);
|
|
|
|
css_process_data(&c, data + 24, sizeof(data) - 25);
|
|
|
|
css_convert(&c, 100, 100);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|