/* * This file is part of LibCSS. * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2008 John-Mark Bell */ #include "parse/properties/properties.h" /** * Dispatch table of property handlers, indexed by property enum */ const css_prop_handler property_handlers[LAST_PROP + 1 - FIRST_PROP] = { parse_azimuth, parse_background, parse_background_attachment, parse_background_color, parse_background_image, parse_background_position, parse_background_repeat, parse_border, parse_border_bottom, parse_border_bottom_color, parse_border_bottom_style, parse_border_bottom_width, parse_border_collapse, parse_border_color, parse_border_left, parse_border_left_color, parse_border_left_style, parse_border_left_width, parse_border_right, parse_border_right_color, parse_border_right_style, parse_border_right_width, parse_border_spacing, parse_border_style, parse_border_top, parse_border_top_color, parse_border_top_style, parse_border_top_width, parse_border_width, parse_bottom, parse_caption_side, parse_clear, parse_clip, parse_color, parse_content, parse_counter_increment, parse_counter_reset, parse_cue, parse_cue_after, parse_cue_before, parse_cursor, parse_direction, parse_display, parse_elevation, parse_empty_cells, parse_float, parse_font, parse_font_family, parse_font_size, parse_font_style, parse_font_variant, parse_font_weight, parse_height, parse_left, parse_letter_spacing, parse_line_height, parse_list_style_image, parse_list_style_position, parse_list_style_type, parse_margin_bottom, parse_margin_left, parse_margin_right, parse_margin_top, parse_max_height, parse_max_width, parse_min_height, parse_min_width, parse_orphans, parse_outline, parse_outline_color, parse_outline_style, parse_outline_width, parse_overflow, parse_padding_bottom, parse_padding_left, parse_padding_right, parse_padding_top, parse_page_break_after, parse_page_break_before, parse_page_break_inside, parse_pause, parse_pause_after, parse_pause_before, parse_pitch_range, parse_pitch, parse_play_during, parse_position, parse_quotes, parse_richness, parse_right, parse_speak_header, parse_speak_numeral, parse_speak_punctuation, parse_speak, parse_speech_rate, parse_stress, parse_table_layout, parse_text_align, parse_text_decoration, parse_text_indent, parse_text_transform, parse_top, parse_unicode_bidi, parse_vertical_align, parse_visibility, parse_voice_family, parse_volume, parse_white_space, parse_widows, parse_width, parse_word_spacing, parse_z_index, };