├── .gitignore ├── CMakeLists.txt ├── COPYING.LESSER ├── Doxyfile ├── README.md ├── cmake ├── FindGLIB.cmake └── FindPurC.cmake ├── code-tools ├── css_property_parser_gen.c ├── gen_prop_parser.sh ├── gen_prop_select.sh ├── prop.gen └── select │ ├── assets.py │ ├── overrides.py │ ├── select_config.py │ └── select_generator.py └── src ├── CMakeLists.txt ├── layout ├── CMakeLists.txt ├── domruler.pc.in ├── include │ └── domruler.h └── src │ ├── css_select.c │ ├── domruler.c │ ├── hl_dom_element_node.c │ ├── hl_dom_element_node.h │ ├── hl_pcdom_element_t.c │ ├── hl_pcdom_element_t.h │ ├── internal.h │ ├── layout.c │ ├── layout.h │ ├── layout_grid.c │ ├── node.c │ ├── node.h │ ├── select.c │ ├── select.h │ ├── utils.c │ └── utils.h ├── samples ├── CMakeLists.txt └── layout_html │ ├── CMakeLists.txt │ ├── html.css │ ├── layout_html.c │ ├── window.css │ └── window.html ├── test ├── CMakeLists.txt ├── block_and_page_inline_block.css ├── block_inline_block.css ├── css_select.c ├── css_select2.c ├── display.css ├── fixed.css ├── fixed2.txt ├── fixed3.txt ├── grid.css ├── layout_1.css ├── layout_2.css ├── layout_pcdom_element.c ├── layout_test.c └── node_test.c ├── third-party ├── CMakeLists.txt ├── libcss │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.config │ ├── Makefile.orig │ ├── README │ ├── docs │ │ ├── API │ │ ├── API-ABI-Changes │ │ ├── Bytecode │ │ ├── Colour │ │ ├── Doxyfile │ │ ├── Grammar │ │ ├── Lexer │ │ ├── Representation │ │ └── Tokens │ ├── examples │ │ ├── CMakeLists.txt │ │ └── example1.c │ ├── hicss.pc.in │ ├── include │ │ └── libcss │ │ │ ├── computed.h │ │ │ ├── errors.h │ │ │ ├── font_face.h │ │ │ ├── fpmath.h │ │ │ ├── functypes.h │ │ │ ├── hint.h │ │ │ ├── libcss.h │ │ │ ├── properties.h │ │ │ ├── select.h │ │ │ ├── stylesheet.h │ │ │ └── types.h │ ├── libcss.pc.in │ ├── src │ │ ├── bytecode │ │ │ ├── bytecode.h │ │ │ └── opcodes.h │ │ ├── charset │ │ │ ├── detect.c │ │ │ └── detect.h │ │ ├── lex │ │ │ ├── lex.c │ │ │ └── lex.h │ │ ├── parse │ │ │ ├── font_face.c │ │ │ ├── font_face.h │ │ │ ├── important.c │ │ │ ├── important.h │ │ │ ├── language.c │ │ │ ├── language.h │ │ │ ├── mq.c │ │ │ ├── mq.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── properties │ │ │ │ ├── autogenerated_align_content.c │ │ │ │ ├── autogenerated_align_items.c │ │ │ │ ├── autogenerated_align_self.c │ │ │ │ ├── autogenerated_background_attachment.c │ │ │ │ ├── autogenerated_background_color.c │ │ │ │ ├── autogenerated_background_image.c │ │ │ │ ├── autogenerated_background_repeat.c │ │ │ │ ├── autogenerated_baseline_shift.c │ │ │ │ ├── autogenerated_border_bottom.c │ │ │ │ ├── autogenerated_border_bottom_color.c │ │ │ │ ├── autogenerated_border_bottom_left_radius.c │ │ │ │ ├── autogenerated_border_bottom_right_radius.c │ │ │ │ ├── autogenerated_border_bottom_style.c │ │ │ │ ├── autogenerated_border_bottom_width.c │ │ │ │ ├── autogenerated_border_collapse.c │ │ │ │ ├── autogenerated_border_left.c │ │ │ │ ├── autogenerated_border_left_color.c │ │ │ │ ├── autogenerated_border_left_style.c │ │ │ │ ├── autogenerated_border_left_width.c │ │ │ │ ├── autogenerated_border_right.c │ │ │ │ ├── autogenerated_border_right_color.c │ │ │ │ ├── autogenerated_border_right_style.c │ │ │ │ ├── autogenerated_border_right_width.c │ │ │ │ ├── autogenerated_border_side_color.c │ │ │ │ ├── autogenerated_border_side_style.c │ │ │ │ ├── autogenerated_border_side_width.c │ │ │ │ ├── autogenerated_border_top.c │ │ │ │ ├── autogenerated_border_top_color.c │ │ │ │ ├── autogenerated_border_top_left_radius.c │ │ │ │ ├── autogenerated_border_top_right_radius.c │ │ │ │ ├── autogenerated_border_top_style.c │ │ │ │ ├── autogenerated_border_top_width.c │ │ │ │ ├── autogenerated_bottom.c │ │ │ │ ├── autogenerated_box_sizing.c │ │ │ │ ├── autogenerated_break_after.c │ │ │ │ ├── autogenerated_break_before.c │ │ │ │ ├── autogenerated_break_inside.c │ │ │ │ ├── autogenerated_caption_side.c │ │ │ │ ├── autogenerated_clear.c │ │ │ │ ├── autogenerated_clip_path.c │ │ │ │ ├── autogenerated_clip_rule.c │ │ │ │ ├── autogenerated_color.c │ │ │ │ ├── autogenerated_column_count.c │ │ │ │ ├── autogenerated_column_fill.c │ │ │ │ ├── autogenerated_column_gap.c │ │ │ │ ├── autogenerated_column_rule_color.c │ │ │ │ ├── autogenerated_column_rule_style.c │ │ │ │ ├── autogenerated_column_rule_width.c │ │ │ │ ├── autogenerated_column_span.c │ │ │ │ ├── autogenerated_column_width.c │ │ │ │ ├── autogenerated_comp_op.c │ │ │ │ ├── autogenerated_counter_increment.c │ │ │ │ ├── autogenerated_counter_reset.c │ │ │ │ ├── autogenerated_cue_after.c │ │ │ │ ├── autogenerated_cue_before.c │ │ │ │ ├── autogenerated_direction.c │ │ │ │ ├── autogenerated_display.c │ │ │ │ ├── autogenerated_empty_cells.c │ │ │ │ ├── autogenerated_enable_background.c │ │ │ │ ├── autogenerated_fill.c │ │ │ │ ├── autogenerated_fill_opacity.c │ │ │ │ ├── autogenerated_fill_rule.c │ │ │ │ ├── autogenerated_filter.c │ │ │ │ ├── autogenerated_flex_basis.c │ │ │ │ ├── autogenerated_flex_direction.c │ │ │ │ ├── autogenerated_flex_grow.c │ │ │ │ ├── autogenerated_flex_shrink.c │ │ │ │ ├── autogenerated_flex_wrap.c │ │ │ │ ├── autogenerated_float.c │ │ │ │ ├── autogenerated_flood_color.c │ │ │ │ ├── autogenerated_flood_opacity.c │ │ │ │ ├── autogenerated_font_size.c │ │ │ │ ├── autogenerated_font_stretch.c │ │ │ │ ├── autogenerated_font_style.c │ │ │ │ ├── autogenerated_font_variant.c │ │ │ │ ├── autogenerated_grid_column_end.c │ │ │ │ ├── autogenerated_grid_column_start.c │ │ │ │ ├── autogenerated_grid_row_end.c │ │ │ │ ├── autogenerated_grid_row_start.c │ │ │ │ ├── autogenerated_grid_template_columns.c │ │ │ │ ├── autogenerated_grid_template_rows.c │ │ │ │ ├── autogenerated_height.c │ │ │ │ ├── autogenerated_justify_content.c │ │ │ │ ├── autogenerated_left.c │ │ │ │ ├── autogenerated_letter_spacing.c │ │ │ │ ├── autogenerated_line_height.c │ │ │ │ ├── autogenerated_list_style_image.c │ │ │ │ ├── autogenerated_list_style_position.c │ │ │ │ ├── autogenerated_margin_bottom.c │ │ │ │ ├── autogenerated_margin_left.c │ │ │ │ ├── autogenerated_margin_right.c │ │ │ │ ├── autogenerated_margin_side.c │ │ │ │ ├── autogenerated_margin_top.c │ │ │ │ ├── autogenerated_marker_end.c │ │ │ │ ├── autogenerated_marker_mid.c │ │ │ │ ├── autogenerated_marker_start.c │ │ │ │ ├── autogenerated_mask.c │ │ │ │ ├── autogenerated_max_height.c │ │ │ │ ├── autogenerated_max_width.c │ │ │ │ ├── autogenerated_min_height.c │ │ │ │ ├── autogenerated_min_width.c │ │ │ │ ├── autogenerated_order.c │ │ │ │ ├── autogenerated_orphans.c │ │ │ │ ├── autogenerated_outline_color.c │ │ │ │ ├── autogenerated_outline_style.c │ │ │ │ ├── autogenerated_outline_width.c │ │ │ │ ├── autogenerated_overflow_x.c │ │ │ │ ├── autogenerated_overflow_y.c │ │ │ │ ├── autogenerated_padding_bottom.c │ │ │ │ ├── autogenerated_padding_left.c │ │ │ │ ├── autogenerated_padding_right.c │ │ │ │ ├── autogenerated_padding_side.c │ │ │ │ ├── autogenerated_padding_top.c │ │ │ │ ├── autogenerated_page_break_after.c │ │ │ │ ├── autogenerated_page_break_before.c │ │ │ │ ├── autogenerated_page_break_inside.c │ │ │ │ ├── autogenerated_pause_after.c │ │ │ │ ├── autogenerated_pause_before.c │ │ │ │ ├── autogenerated_pitch.c │ │ │ │ ├── autogenerated_pitch_range.c │ │ │ │ ├── autogenerated_position.c │ │ │ │ ├── autogenerated_richness.c │ │ │ │ ├── autogenerated_right.c │ │ │ │ ├── autogenerated_shape_rendering.c │ │ │ │ ├── autogenerated_side.c │ │ │ │ ├── autogenerated_speak.c │ │ │ │ ├── autogenerated_speak_header.c │ │ │ │ ├── autogenerated_speak_numeral.c │ │ │ │ ├── autogenerated_speak_punctuation.c │ │ │ │ ├── autogenerated_speech_rate.c │ │ │ │ ├── autogenerated_stop_color.c │ │ │ │ ├── autogenerated_stop_opacity.c │ │ │ │ ├── autogenerated_stress.c │ │ │ │ ├── autogenerated_stroke.c │ │ │ │ ├── autogenerated_stroke_dasharray.c │ │ │ │ ├── autogenerated_stroke_dashoffset.c │ │ │ │ ├── autogenerated_stroke_linecap.c │ │ │ │ ├── autogenerated_stroke_linejoin.c │ │ │ │ ├── autogenerated_stroke_miterlimit.c │ │ │ │ ├── autogenerated_stroke_opacity.c │ │ │ │ ├── autogenerated_stroke_width.c │ │ │ │ ├── autogenerated_table_layout.c │ │ │ │ ├── autogenerated_text_align.c │ │ │ │ ├── autogenerated_text_align_last.c │ │ │ │ ├── autogenerated_text_anchor.c │ │ │ │ ├── autogenerated_text_indent.c │ │ │ │ ├── autogenerated_text_justify.c │ │ │ │ ├── autogenerated_text_overflow.c │ │ │ │ ├── autogenerated_text_rendering.c │ │ │ │ ├── autogenerated_text_shadow.c │ │ │ │ ├── autogenerated_text_transform.c │ │ │ │ ├── autogenerated_top.c │ │ │ │ ├── autogenerated_unicode_bidi.c │ │ │ │ ├── autogenerated_vertical_align.c │ │ │ │ ├── autogenerated_visibility.c │ │ │ │ ├── autogenerated_volume.c │ │ │ │ ├── autogenerated_white_space.c │ │ │ │ ├── autogenerated_widows.c │ │ │ │ ├── autogenerated_width.c │ │ │ │ ├── autogenerated_word_break.c │ │ │ │ ├── autogenerated_word_spacing.c │ │ │ │ ├── autogenerated_word_wrap.c │ │ │ │ ├── autogenerated_writing_mode.c │ │ │ │ ├── autogenerated_z_index.c │ │ │ │ ├── azimuth.c │ │ │ │ ├── background.c │ │ │ │ ├── background_position.c │ │ │ │ ├── border.c │ │ │ │ ├── border_color.c │ │ │ │ ├── border_spacing.c │ │ │ │ ├── border_style.c │ │ │ │ ├── border_width.c │ │ │ │ ├── clip.c │ │ │ │ ├── column_rule.c │ │ │ │ ├── columns.c │ │ │ │ ├── content.c │ │ │ │ ├── css_property_parser_gen.c │ │ │ │ ├── cue.c │ │ │ │ ├── cursor.c │ │ │ │ ├── elevation.c │ │ │ │ ├── fill.c │ │ │ │ ├── fill_opacity.c │ │ │ │ ├── filter.c │ │ │ │ ├── flex.c │ │ │ │ ├── flex_flow.c │ │ │ │ ├── flood_opacity.c │ │ │ │ ├── font.c │ │ │ │ ├── font_family.c │ │ │ │ ├── font_weight.c │ │ │ │ ├── grid_column_end.c │ │ │ │ ├── grid_column_start.c │ │ │ │ ├── grid_row_end.c │ │ │ │ ├── grid_row_start.c │ │ │ │ ├── grid_template_columns.c │ │ │ │ ├── grid_template_rows.c │ │ │ │ ├── list_style.c │ │ │ │ ├── list_style_type.c │ │ │ │ ├── margin.c │ │ │ │ ├── opacity.c │ │ │ │ ├── outline.c │ │ │ │ ├── overflow.c │ │ │ │ ├── padding.c │ │ │ │ ├── pause.c │ │ │ │ ├── play_during.c │ │ │ │ ├── properties.c │ │ │ │ ├── properties.gen │ │ │ │ ├── properties.h │ │ │ │ ├── quotes.c │ │ │ │ ├── stop_opacity.c │ │ │ │ ├── stroke.c │ │ │ │ ├── stroke_dasharray.c │ │ │ │ ├── stroke_opacity.c │ │ │ │ ├── text_decoration.c │ │ │ │ ├── text_overflow.c │ │ │ │ ├── text_shadow.c │ │ │ │ ├── utils.c │ │ │ │ ├── utils.h │ │ │ │ └── voice_family.c │ │ │ ├── propstrings.c │ │ │ └── propstrings.h │ │ ├── select │ │ │ ├── arena.c │ │ │ ├── arena.h │ │ │ ├── arena_hash.h │ │ │ ├── assets.py │ │ │ ├── autogenerated_computed.h │ │ │ ├── autogenerated_propget.h │ │ │ ├── autogenerated_propset.h │ │ │ ├── bloom.h │ │ │ ├── computed.c │ │ │ ├── computed.h │ │ │ ├── dispatch.c │ │ │ ├── dispatch.h │ │ │ ├── font_face.c │ │ │ ├── font_face.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── mq.h │ │ │ ├── overrides.py │ │ │ ├── properties │ │ │ │ ├── align_content.c │ │ │ │ ├── align_items.c │ │ │ │ ├── align_self.c │ │ │ │ ├── azimuth.c │ │ │ │ ├── background_attachment.c │ │ │ │ ├── background_color.c │ │ │ │ ├── background_image.c │ │ │ │ ├── background_position.c │ │ │ │ ├── background_repeat.c │ │ │ │ ├── baseline_shift.c │ │ │ │ ├── border_bottom_color.c │ │ │ │ ├── border_bottom_left_radius.c │ │ │ │ ├── border_bottom_right_radius.c │ │ │ │ ├── border_bottom_style.c │ │ │ │ ├── border_bottom_width.c │ │ │ │ ├── border_collapse.c │ │ │ │ ├── border_left_color.c │ │ │ │ ├── border_left_style.c │ │ │ │ ├── border_left_width.c │ │ │ │ ├── border_right_color.c │ │ │ │ ├── border_right_style.c │ │ │ │ ├── border_right_width.c │ │ │ │ ├── border_spacing.c │ │ │ │ ├── border_top_color.c │ │ │ │ ├── border_top_left_radius.c │ │ │ │ ├── border_top_right_radius.c │ │ │ │ ├── border_top_style.c │ │ │ │ ├── border_top_width.c │ │ │ │ ├── bottom.c │ │ │ │ ├── box_sizing.c │ │ │ │ ├── break_after.c │ │ │ │ ├── break_before.c │ │ │ │ ├── break_inside.c │ │ │ │ ├── caption_side.c │ │ │ │ ├── clear.c │ │ │ │ ├── clip.c │ │ │ │ ├── clip_path.c │ │ │ │ ├── clip_rule.c │ │ │ │ ├── color.c │ │ │ │ ├── column_count.c │ │ │ │ ├── column_fill.c │ │ │ │ ├── column_gap.c │ │ │ │ ├── column_rule_color.c │ │ │ │ ├── column_rule_style.c │ │ │ │ ├── column_rule_width.c │ │ │ │ ├── column_span.c │ │ │ │ ├── column_width.c │ │ │ │ ├── comp_op.c │ │ │ │ ├── content.c │ │ │ │ ├── counter_increment.c │ │ │ │ ├── counter_reset.c │ │ │ │ ├── cue_after.c │ │ │ │ ├── cue_before.c │ │ │ │ ├── cursor.c │ │ │ │ ├── direction.c │ │ │ │ ├── display.c │ │ │ │ ├── elevation.c │ │ │ │ ├── empty_cells.c │ │ │ │ ├── enable_background.c │ │ │ │ ├── fill.c │ │ │ │ ├── fill_opacity.c │ │ │ │ ├── fill_rule.c │ │ │ │ ├── filter.c │ │ │ │ ├── flex_basis.c │ │ │ │ ├── flex_direction.c │ │ │ │ ├── flex_grow.c │ │ │ │ ├── flex_shrink.c │ │ │ │ ├── flex_wrap.c │ │ │ │ ├── float.c │ │ │ │ ├── flood_color.c │ │ │ │ ├── flood_opacity.c │ │ │ │ ├── font_family.c │ │ │ │ ├── font_size.c │ │ │ │ ├── font_stretch.c │ │ │ │ ├── font_style.c │ │ │ │ ├── font_variant.c │ │ │ │ ├── font_weight.c │ │ │ │ ├── grid_column_end.c │ │ │ │ ├── grid_column_start.c │ │ │ │ ├── grid_row_end.c │ │ │ │ ├── grid_row_start.c │ │ │ │ ├── grid_template_columns.c │ │ │ │ ├── grid_template_rows.c │ │ │ │ ├── height.c │ │ │ │ ├── helpers.c │ │ │ │ ├── helpers.h │ │ │ │ ├── justify_content.c │ │ │ │ ├── left.c │ │ │ │ ├── letter_spacing.c │ │ │ │ ├── line_height.c │ │ │ │ ├── list_style_image.c │ │ │ │ ├── list_style_position.c │ │ │ │ ├── list_style_type.c │ │ │ │ ├── margin_bottom.c │ │ │ │ ├── margin_left.c │ │ │ │ ├── margin_right.c │ │ │ │ ├── margin_top.c │ │ │ │ ├── marker_end.c │ │ │ │ ├── marker_mid.c │ │ │ │ ├── marker_start.c │ │ │ │ ├── mask.c │ │ │ │ ├── max_height.c │ │ │ │ ├── max_width.c │ │ │ │ ├── min_height.c │ │ │ │ ├── min_width.c │ │ │ │ ├── opacity.c │ │ │ │ ├── order.c │ │ │ │ ├── orphans.c │ │ │ │ ├── outline_color.c │ │ │ │ ├── outline_style.c │ │ │ │ ├── outline_width.c │ │ │ │ ├── overflow_x.c │ │ │ │ ├── overflow_y.c │ │ │ │ ├── padding_bottom.c │ │ │ │ ├── padding_left.c │ │ │ │ ├── padding_right.c │ │ │ │ ├── padding_top.c │ │ │ │ ├── page_break_after.c │ │ │ │ ├── page_break_before.c │ │ │ │ ├── page_break_inside.c │ │ │ │ ├── pause_after.c │ │ │ │ ├── pause_before.c │ │ │ │ ├── pitch.c │ │ │ │ ├── pitch_range.c │ │ │ │ ├── play_during.c │ │ │ │ ├── position.c │ │ │ │ ├── properties.h │ │ │ │ ├── quotes.c │ │ │ │ ├── richness.c │ │ │ │ ├── right.c │ │ │ │ ├── shape_rendering.c │ │ │ │ ├── speak.c │ │ │ │ ├── speak_header.c │ │ │ │ ├── speak_numeral.c │ │ │ │ ├── speak_punctuation.c │ │ │ │ ├── speech_rate.c │ │ │ │ ├── stop_color.c │ │ │ │ ├── stop_opacity.c │ │ │ │ ├── stress.c │ │ │ │ ├── stroke.c │ │ │ │ ├── stroke_dasharray.c │ │ │ │ ├── stroke_dashoffset.c │ │ │ │ ├── stroke_linecap.c │ │ │ │ ├── stroke_linejoin.c │ │ │ │ ├── stroke_miterlimit.c │ │ │ │ ├── stroke_opacity.c │ │ │ │ ├── stroke_width.c │ │ │ │ ├── table_layout.c │ │ │ │ ├── text_align.c │ │ │ │ ├── text_align_last.c │ │ │ │ ├── text_anchor.c │ │ │ │ ├── text_decoration.c │ │ │ │ ├── text_indent.c │ │ │ │ ├── text_justify.c │ │ │ │ ├── text_overflow.c │ │ │ │ ├── text_rendering.c │ │ │ │ ├── text_shadow.c │ │ │ │ ├── text_transform.c │ │ │ │ ├── top.c │ │ │ │ ├── unicode_bidi.c │ │ │ │ ├── vertical_align.c │ │ │ │ ├── visibility.c │ │ │ │ ├── voice_family.c │ │ │ │ ├── volume.c │ │ │ │ ├── white_space.c │ │ │ │ ├── widows.c │ │ │ │ ├── width.c │ │ │ │ ├── word_break.c │ │ │ │ ├── word_spacing.c │ │ │ │ ├── word_wrap.c │ │ │ │ ├── writing_mode.c │ │ │ │ └── z_index.c │ │ │ ├── propget.h │ │ │ ├── propset.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── select_config.py │ │ │ └── select_generator.py │ │ ├── stylesheet.c │ │ ├── stylesheet.h │ │ └── utils │ │ │ ├── errors.c │ │ │ ├── parserutilserror.h │ │ │ ├── utils.c │ │ │ └── utils.h │ └── test │ │ ├── INDEX │ │ ├── README │ │ ├── csdetect.c │ │ ├── css21.c │ │ ├── data │ │ ├── csdetect │ │ │ ├── INDEX │ │ │ ├── bom-charset.dat │ │ │ └── bom.dat │ │ ├── css │ │ │ ├── INDEX │ │ │ ├── allzengarden.css │ │ │ ├── badcomment.css │ │ │ ├── blocks.css │ │ │ ├── color.css │ │ │ ├── fontface.css │ │ │ ├── malformed.css │ │ │ └── simple.css │ │ ├── lex │ │ │ ├── INDEX │ │ │ ├── regression.dat │ │ │ ├── tests1.dat │ │ │ └── tests2.dat │ │ ├── number │ │ │ ├── INDEX │ │ │ └── number.dat │ │ ├── parse │ │ │ ├── INDEX │ │ │ ├── README │ │ │ ├── atrules.dat │ │ │ ├── colours-hsl.dat │ │ │ ├── colours.dat │ │ │ ├── makefixed.pl │ │ │ ├── makeopv.pl │ │ │ ├── nth.dat │ │ │ ├── properties.dat │ │ │ ├── selectors.dat │ │ │ └── tests1.dat │ │ ├── parse2 │ │ │ ├── INDEX │ │ │ ├── README │ │ │ ├── au.dat │ │ │ ├── bg.dat │ │ │ ├── bgpos.dat │ │ │ ├── border.dat │ │ │ ├── comments.dat │ │ │ ├── dodgy-media-block.dat │ │ │ ├── eof.dat │ │ │ ├── flexbox.dat │ │ │ ├── font.dat │ │ │ ├── illegal-values.dat │ │ │ ├── list.dat │ │ │ ├── malformed-declarations.dat │ │ │ ├── margin.dat │ │ │ ├── multicol.dat │ │ │ ├── outline.dat │ │ │ ├── overflow.dat │ │ │ ├── padding.dat │ │ │ ├── selectors.dat │ │ │ ├── tests1.dat │ │ │ ├── units.dat │ │ │ └── unknown-properties.dat │ │ └── select │ │ │ ├── INDEX │ │ │ └── tests1.dat │ │ ├── dump.h │ │ ├── dump_computed.h │ │ ├── lex-auto.c │ │ ├── lex.c │ │ ├── number.c │ │ ├── parse-auto.c │ │ ├── parse.c │ │ ├── parse2-auto.c │ │ ├── select.c │ │ └── testutils.h ├── libparserutils │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.config │ ├── Makefile.orig │ ├── README │ ├── docs │ │ └── Todo │ ├── include │ │ └── parserutils │ │ │ ├── charset │ │ │ ├── codec.h │ │ │ ├── mibenum.h │ │ │ ├── utf16.h │ │ │ └── utf8.h │ │ │ ├── errors.h │ │ │ ├── functypes.h │ │ │ ├── input │ │ │ └── inputstream.h │ │ │ ├── parserutils.h │ │ │ ├── types.h │ │ │ └── utils │ │ │ ├── buffer.h │ │ │ ├── stack.h │ │ │ └── vector.h │ ├── libparserutils.pc.in │ ├── src │ │ ├── charset │ │ │ ├── aliases.c │ │ │ ├── aliases.h │ │ │ ├── aliases.inc │ │ │ ├── codec.c │ │ │ ├── codecs │ │ │ │ ├── 8859_tables.h │ │ │ │ ├── codec_8859.c │ │ │ │ ├── codec_ascii.c │ │ │ │ ├── codec_ext8.c │ │ │ │ ├── codec_impl.h │ │ │ │ ├── codec_utf16.c │ │ │ │ ├── codec_utf8.c │ │ │ │ └── ext8_tables.h │ │ │ └── encodings │ │ │ │ ├── utf16.c │ │ │ │ ├── utf8.c │ │ │ │ └── utf8impl.h │ │ ├── input │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ └── inputstream.c │ │ └── utils │ │ │ ├── buffer.c │ │ │ ├── endian.h │ │ │ ├── errors.c │ │ │ ├── stack.c │ │ │ ├── utils.h │ │ │ └── vector.c │ └── test │ │ ├── INDEX │ │ ├── README │ │ ├── aliases.c │ │ ├── cscodec-8859.c │ │ ├── cscodec-ext8.c │ │ ├── cscodec-utf16.c │ │ ├── cscodec-utf8.c │ │ ├── data │ │ ├── cscodec-8859 │ │ │ ├── 1.dat │ │ │ ├── 10.dat │ │ │ ├── 11.dat │ │ │ ├── 13.dat │ │ │ ├── 14.dat │ │ │ ├── 15.dat │ │ │ ├── 16.dat │ │ │ ├── 2.dat │ │ │ ├── 3.dat │ │ │ ├── 4.dat │ │ │ ├── 5.dat │ │ │ ├── 6.dat │ │ │ ├── 7.dat │ │ │ ├── 8.dat │ │ │ ├── 9.dat │ │ │ └── INDEX │ │ ├── cscodec-ext8 │ │ │ ├── INDEX │ │ │ ├── cp1250.dat │ │ │ ├── cp1251.dat │ │ │ ├── cp1252.dat │ │ │ ├── cp1253.dat │ │ │ ├── cp1254.dat │ │ │ ├── cp1255.dat │ │ │ ├── cp1256.dat │ │ │ ├── cp1257.dat │ │ │ └── cp1258.dat │ │ ├── cscodec-utf16 │ │ │ ├── INDEX │ │ │ └── simple.dat │ │ ├── cscodec-utf8 │ │ │ ├── INDEX │ │ │ ├── UTF-8-test.txt │ │ │ └── simple.dat │ │ └── input │ │ │ ├── INDEX │ │ │ └── UTF-8-test.txt │ │ ├── filter.c │ │ ├── inputstream.c │ │ ├── regression │ │ ├── INDEX │ │ ├── buffer-discard.c │ │ ├── filter-badenc-segv.c │ │ ├── filter-segv.c │ │ └── stream-nomem.c │ │ └── testutils.h └── libwapcaplet │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.orig │ ├── README │ ├── docs │ └── Doxyfile │ ├── include │ └── libwapcaplet │ │ └── libwapcaplet.h │ ├── libwapcaplet.pc.in │ ├── src │ └── libwapcaplet.c │ └── test │ ├── basictests.c │ ├── testmain.c │ └── tests.h └── tools └── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── source └── format /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/Doxyfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindGLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/cmake/FindGLIB.cmake -------------------------------------------------------------------------------- /cmake/FindPurC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/cmake/FindPurC.cmake -------------------------------------------------------------------------------- /code-tools/css_property_parser_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/css_property_parser_gen.c -------------------------------------------------------------------------------- /code-tools/gen_prop_parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/gen_prop_parser.sh -------------------------------------------------------------------------------- /code-tools/gen_prop_select.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/gen_prop_select.sh -------------------------------------------------------------------------------- /code-tools/prop.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/prop.gen -------------------------------------------------------------------------------- /code-tools/select/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/select/assets.py -------------------------------------------------------------------------------- /code-tools/select/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/select/overrides.py -------------------------------------------------------------------------------- /code-tools/select/select_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/select/select_config.py -------------------------------------------------------------------------------- /code-tools/select/select_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/code-tools/select/select_generator.py -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/layout/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/CMakeLists.txt -------------------------------------------------------------------------------- /src/layout/domruler.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/domruler.pc.in -------------------------------------------------------------------------------- /src/layout/include/domruler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/include/domruler.h -------------------------------------------------------------------------------- /src/layout/src/css_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/css_select.c -------------------------------------------------------------------------------- /src/layout/src/domruler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/domruler.c -------------------------------------------------------------------------------- /src/layout/src/hl_dom_element_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/hl_dom_element_node.c -------------------------------------------------------------------------------- /src/layout/src/hl_dom_element_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/hl_dom_element_node.h -------------------------------------------------------------------------------- /src/layout/src/hl_pcdom_element_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/hl_pcdom_element_t.c -------------------------------------------------------------------------------- /src/layout/src/hl_pcdom_element_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/hl_pcdom_element_t.h -------------------------------------------------------------------------------- /src/layout/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/internal.h -------------------------------------------------------------------------------- /src/layout/src/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/layout.c -------------------------------------------------------------------------------- /src/layout/src/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/layout.h -------------------------------------------------------------------------------- /src/layout/src/layout_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/layout_grid.c -------------------------------------------------------------------------------- /src/layout/src/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/node.c -------------------------------------------------------------------------------- /src/layout/src/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/node.h -------------------------------------------------------------------------------- /src/layout/src/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/select.c -------------------------------------------------------------------------------- /src/layout/src/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/select.h -------------------------------------------------------------------------------- /src/layout/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/utils.c -------------------------------------------------------------------------------- /src/layout/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/layout/src/utils.h -------------------------------------------------------------------------------- /src/samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/samples/CMakeLists.txt -------------------------------------------------------------------------------- /src/samples/layout_html/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/samples/layout_html/CMakeLists.txt -------------------------------------------------------------------------------- /src/samples/layout_html/html.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/samples/layout_html/html.css -------------------------------------------------------------------------------- /src/samples/layout_html/layout_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/samples/layout_html/layout_html.c -------------------------------------------------------------------------------- /src/samples/layout_html/window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/samples/layout_html/window.css -------------------------------------------------------------------------------- /src/samples/layout_html/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/samples/layout_html/window.html -------------------------------------------------------------------------------- /src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/block_and_page_inline_block.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/block_and_page_inline_block.css -------------------------------------------------------------------------------- /src/test/block_inline_block.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/block_inline_block.css -------------------------------------------------------------------------------- /src/test/css_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/css_select.c -------------------------------------------------------------------------------- /src/test/css_select2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/css_select2.c -------------------------------------------------------------------------------- /src/test/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/display.css -------------------------------------------------------------------------------- /src/test/fixed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/fixed.css -------------------------------------------------------------------------------- /src/test/fixed2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/fixed2.txt -------------------------------------------------------------------------------- /src/test/fixed3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/fixed3.txt -------------------------------------------------------------------------------- /src/test/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/grid.css -------------------------------------------------------------------------------- /src/test/layout_1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/layout_1.css -------------------------------------------------------------------------------- /src/test/layout_2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/layout_2.css -------------------------------------------------------------------------------- /src/test/layout_pcdom_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/layout_pcdom_element.c -------------------------------------------------------------------------------- /src/test/layout_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/layout_test.c -------------------------------------------------------------------------------- /src/test/node_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/test/node_test.c -------------------------------------------------------------------------------- /src/third-party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/CMakeLists.txt -------------------------------------------------------------------------------- /src/third-party/libcss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/CMakeLists.txt -------------------------------------------------------------------------------- /src/third-party/libcss/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/COPYING -------------------------------------------------------------------------------- /src/third-party/libcss/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/Makefile.config -------------------------------------------------------------------------------- /src/third-party/libcss/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/Makefile.orig -------------------------------------------------------------------------------- /src/third-party/libcss/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/README -------------------------------------------------------------------------------- /src/third-party/libcss/docs/API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/API -------------------------------------------------------------------------------- /src/third-party/libcss/docs/API-ABI-Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/API-ABI-Changes -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Bytecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Bytecode -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Colour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Colour -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Doxyfile -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Grammar -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Lexer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Lexer -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Representation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Representation -------------------------------------------------------------------------------- /src/third-party/libcss/docs/Tokens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/docs/Tokens -------------------------------------------------------------------------------- /src/third-party/libcss/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/examples/CMakeLists.txt -------------------------------------------------------------------------------- /src/third-party/libcss/examples/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/examples/example1.c -------------------------------------------------------------------------------- /src/third-party/libcss/hicss.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/hicss.pc.in -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/computed.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/errors.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/font_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/font_face.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/fpmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/fpmath.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/functypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/functypes.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/hint.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/libcss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/libcss.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/properties.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/select.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/stylesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/stylesheet.h -------------------------------------------------------------------------------- /src/third-party/libcss/include/libcss/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/include/libcss/types.h -------------------------------------------------------------------------------- /src/third-party/libcss/libcss.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/libcss.pc.in -------------------------------------------------------------------------------- /src/third-party/libcss/src/bytecode/bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/bytecode/bytecode.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/bytecode/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/bytecode/opcodes.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/charset/detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/charset/detect.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/charset/detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/charset/detect.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/lex/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/lex/lex.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/lex/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/lex/lex.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/font_face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/font_face.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/font_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/font_face.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/important.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/important.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/important.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/important.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/language.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/language.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/mq.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/mq.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/parse.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/parse.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_align_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_align_content.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_align_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_align_items.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_align_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_align_self.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_background_attachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_background_attachment.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_background_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_background_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_background_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_background_image.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_background_repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_background_repeat.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_baseline_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_baseline_shift.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_left_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_left_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_right_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_right_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_bottom_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_collapse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_collapse.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_left_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_left_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_left_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_left_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_left_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_left_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_right_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_right_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_right_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_right_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_right_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_right_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_side_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_side_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_side_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_side_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_side_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_side_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_top_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_top_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_top_left_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_top_left_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_top_right_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_top_right_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_top_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_top_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_border_top_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_border_top_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_box_sizing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_box_sizing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_break_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_break_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_break_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_break_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_break_inside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_break_inside.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_caption_side.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_caption_side.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_clear.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_clip_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_clip_path.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_clip_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_clip_rule.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_count.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_fill.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_gap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_rule_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_rule_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_rule_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_rule_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_rule_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_rule_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_span.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_column_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_column_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_comp_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_comp_op.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_counter_increment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_counter_increment.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_counter_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_counter_reset.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_cue_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_cue_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_cue_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_cue_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_direction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_direction.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_display.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_empty_cells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_empty_cells.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_enable_background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_enable_background.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_fill.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_fill_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_fill_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_fill_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_fill_rule.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_filter.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flex_basis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flex_basis.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flex_direction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flex_direction.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flex_grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flex_grow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flex_shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flex_shrink.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flex_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flex_wrap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_float.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flood_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flood_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_flood_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_flood_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_font_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_font_size.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_font_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_font_stretch.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_font_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_font_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_font_variant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_font_variant.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_grid_column_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_grid_column_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_grid_column_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_grid_column_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_grid_row_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_grid_row_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_grid_row_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_grid_row_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_grid_template_columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_grid_template_columns.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_grid_template_rows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_grid_template_rows.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_justify_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_justify_content.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_letter_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_letter_spacing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_line_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_line_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_list_style_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_list_style_image.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_list_style_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_list_style_position.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_margin_bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_margin_bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_margin_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_margin_left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_margin_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_margin_right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_margin_side.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_margin_side.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_margin_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_margin_top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_marker_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_marker_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_marker_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_marker_mid.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_marker_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_marker_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_mask.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_max_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_max_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_max_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_max_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_min_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_min_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_min_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_min_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_order.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_orphans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_orphans.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_outline_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_outline_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_outline_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_outline_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_outline_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_outline_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_overflow_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_overflow_x.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_overflow_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_overflow_y.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_padding_bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_padding_bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_padding_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_padding_left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_padding_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_padding_right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_padding_side.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_padding_side.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_padding_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_padding_top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_page_break_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_page_break_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_page_break_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_page_break_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_page_break_inside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_page_break_inside.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_pause_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_pause_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_pause_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_pause_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_pitch.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_pitch_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_pitch_range.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_position.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_richness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_richness.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_shape_rendering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_shape_rendering.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_side.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_side.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_speak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_speak.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_speak_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_speak_header.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_speak_numeral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_speak_numeral.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_speak_punctuation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_speak_punctuation.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_speech_rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_speech_rate.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stop_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stop_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stop_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stop_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stress.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_dasharray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_dasharray.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_dashoffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_dashoffset.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_linecap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_linecap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_linejoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_linejoin.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_miterlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_miterlimit.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_stroke_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_stroke_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_table_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_table_layout.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_align.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_align_last.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_align_last.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_anchor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_anchor.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_indent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_indent.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_justify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_justify.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_overflow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_rendering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_rendering.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_shadow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_text_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_text_transform.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_unicode_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_unicode_bidi.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_vertical_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_vertical_align.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_visibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_visibility.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_volume.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_white_space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_white_space.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_widows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_widows.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_word_break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_word_break.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_word_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_word_spacing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_word_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_word_wrap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_writing_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_writing_mode.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/autogenerated_z_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/autogenerated_z_index.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/azimuth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/azimuth.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/background.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/background_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/background_position.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/border.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/border_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/border_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/border_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/border_spacing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/border_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/border_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/border_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/border_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/clip.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/column_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/column_rule.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/columns.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/content.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/css_property_parser_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/css_property_parser_gen.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/cue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/cue.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/cursor.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/elevation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/elevation.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/fill.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/fill_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/fill_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/filter.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/flex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/flex.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/flex_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/flex_flow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/flood_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/flood_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/font.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/font_family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/font_family.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/font_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/font_weight.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/grid_column_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/grid_column_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/grid_column_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/grid_column_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/grid_row_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/grid_row_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/grid_row_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/grid_row_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/grid_template_columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/grid_template_columns.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/grid_template_rows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/grid_template_rows.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/list_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/list_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/list_style_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/list_style_type.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/margin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/margin.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/outline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/outline.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/overflow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/padding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/padding.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/pause.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/play_during.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/play_during.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/properties.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/properties.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/properties.gen -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/properties.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/quotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/quotes.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/stop_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/stop_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/stroke.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/stroke_dasharray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/stroke_dasharray.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/stroke_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/stroke_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/text_decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/text_decoration.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/text_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/text_overflow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/text_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/text_shadow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/utils.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/utils.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/properties/voice_family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/properties/voice_family.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/propstrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/propstrings.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/parse/propstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/parse/propstrings.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/arena.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/arena.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/arena_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/arena_hash.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/assets.py -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/autogenerated_computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/autogenerated_computed.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/autogenerated_propget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/autogenerated_propget.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/autogenerated_propset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/autogenerated_propset.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/bloom.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/computed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/computed.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/computed.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/dispatch.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/dispatch.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/font_face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/font_face.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/font_face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/font_face.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/hash.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/hash.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/mq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/mq.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/overrides.py -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/align_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/align_content.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/align_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/align_items.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/align_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/align_self.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/azimuth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/azimuth.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/background_attachment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/background_attachment.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/background_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/background_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/background_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/background_image.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/background_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/background_position.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/background_repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/background_repeat.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/baseline_shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/baseline_shift.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_bottom_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_bottom_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_bottom_left_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_bottom_left_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_bottom_right_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_bottom_right_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_bottom_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_bottom_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_bottom_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_bottom_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_collapse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_collapse.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_left_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_left_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_left_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_left_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_left_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_left_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_right_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_right_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_right_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_right_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_right_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_right_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_spacing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_top_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_top_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_top_left_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_top_left_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_top_right_radius.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_top_right_radius.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_top_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_top_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/border_top_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/border_top_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/box_sizing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/box_sizing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/break_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/break_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/break_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/break_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/break_inside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/break_inside.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/caption_side.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/caption_side.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/clear.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/clip.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/clip_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/clip_path.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/clip_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/clip_rule.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_count.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_fill.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_gap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_rule_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_rule_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_rule_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_rule_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_rule_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_rule_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_span.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_span.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/column_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/column_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/comp_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/comp_op.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/content.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/counter_increment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/counter_increment.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/counter_reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/counter_reset.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/cue_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/cue_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/cue_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/cue_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/cursor.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/direction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/direction.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/display.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/elevation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/elevation.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/empty_cells.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/empty_cells.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/enable_background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/enable_background.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/fill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/fill.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/fill_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/fill_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/fill_rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/fill_rule.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/filter.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flex_basis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flex_basis.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flex_direction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flex_direction.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flex_grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flex_grow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flex_shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flex_shrink.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flex_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flex_wrap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/float.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flood_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flood_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/flood_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/flood_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/font_family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/font_family.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/font_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/font_size.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/font_stretch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/font_stretch.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/font_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/font_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/font_variant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/font_variant.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/font_weight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/font_weight.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/grid_column_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/grid_column_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/grid_column_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/grid_column_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/grid_row_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/grid_row_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/grid_row_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/grid_row_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/grid_template_columns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/grid_template_columns.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/grid_template_rows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/grid_template_rows.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/helpers.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/helpers.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/justify_content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/justify_content.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/letter_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/letter_spacing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/line_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/line_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/list_style_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/list_style_image.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/list_style_position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/list_style_position.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/list_style_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/list_style_type.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/margin_bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/margin_bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/margin_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/margin_left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/margin_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/margin_right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/margin_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/margin_top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/marker_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/marker_end.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/marker_mid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/marker_mid.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/marker_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/marker_start.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/mask.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/max_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/max_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/max_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/max_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/min_height.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/min_height.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/min_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/min_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/order.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/orphans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/orphans.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/outline_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/outline_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/outline_style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/outline_style.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/outline_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/outline_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/overflow_x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/overflow_x.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/overflow_y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/overflow_y.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/padding_bottom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/padding_bottom.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/padding_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/padding_left.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/padding_right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/padding_right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/padding_top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/padding_top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/page_break_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/page_break_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/page_break_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/page_break_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/page_break_inside.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/page_break_inside.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/pause_after.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/pause_after.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/pause_before.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/pause_before.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/pitch.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/pitch_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/pitch_range.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/play_during.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/play_during.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/position.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/properties.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/quotes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/quotes.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/richness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/richness.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/right.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/right.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/shape_rendering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/shape_rendering.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/speak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/speak.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/speak_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/speak_header.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/speak_numeral.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/speak_numeral.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/speak_punctuation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/speak_punctuation.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/speech_rate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/speech_rate.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stop_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stop_color.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stop_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stop_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stress.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_dasharray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_dasharray.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_dashoffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_dashoffset.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_linecap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_linecap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_linejoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_linejoin.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_miterlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_miterlimit.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_opacity.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/stroke_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/stroke_width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/table_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/table_layout.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_align.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_align_last.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_align_last.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_anchor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_anchor.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_decoration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_decoration.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_indent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_indent.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_justify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_justify.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_overflow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_rendering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_rendering.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_shadow.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/text_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/text_transform.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/top.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/top.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/unicode_bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/unicode_bidi.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/vertical_align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/vertical_align.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/visibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/visibility.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/voice_family.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/voice_family.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/volume.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/white_space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/white_space.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/widows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/widows.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/width.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/word_break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/word_break.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/word_spacing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/word_spacing.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/word_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/word_wrap.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/writing_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/writing_mode.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/properties/z_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/properties/z_index.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/propget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/propget.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/propset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/propset.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/select.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/select.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/select_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/select_config.py -------------------------------------------------------------------------------- /src/third-party/libcss/src/select/select_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/select/select_generator.py -------------------------------------------------------------------------------- /src/third-party/libcss/src/stylesheet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/stylesheet.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/stylesheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/stylesheet.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/utils/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/utils/errors.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/utils/parserutilserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/utils/parserutilserror.h -------------------------------------------------------------------------------- /src/third-party/libcss/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/utils/utils.c -------------------------------------------------------------------------------- /src/third-party/libcss/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/src/utils/utils.h -------------------------------------------------------------------------------- /src/third-party/libcss/test/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/README -------------------------------------------------------------------------------- /src/third-party/libcss/test/csdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/csdetect.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/css21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/css21.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/csdetect/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/csdetect/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/csdetect/bom-charset.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/csdetect/bom-charset.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/csdetect/bom.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/csdetect/bom.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/allzengarden.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/allzengarden.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/badcomment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/badcomment.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/blocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/blocks.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/color.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/fontface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/fontface.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/malformed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/malformed.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/css/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/css/simple.css -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/lex/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/lex/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/lex/regression.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/lex/regression.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/lex/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/lex/tests1.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/lex/tests2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/lex/tests2.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/number/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/number/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/number/number.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/number/number.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/README -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/atrules.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/atrules.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/colours-hsl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/colours-hsl.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/colours.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/colours.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/makefixed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/makefixed.pl -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/makeopv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/makeopv.pl -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/nth.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/nth.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/properties.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/properties.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/selectors.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/selectors.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse/tests1.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/README -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/au.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/au.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/bg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/bg.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/bgpos.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/bgpos.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/border.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/border.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/comments.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/comments.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/dodgy-media-block.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/dodgy-media-block.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/eof.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/eof.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/flexbox.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/flexbox.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/font.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/font.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/illegal-values.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/illegal-values.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/list.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/list.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/malformed-declarations.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/malformed-declarations.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/margin.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/margin.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/multicol.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/multicol.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/outline.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/outline.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/overflow.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/overflow.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/padding.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/padding.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/selectors.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/selectors.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/tests1.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/units.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/units.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/parse2/unknown-properties.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/parse2/unknown-properties.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/select/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/select/INDEX -------------------------------------------------------------------------------- /src/third-party/libcss/test/data/select/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/data/select/tests1.dat -------------------------------------------------------------------------------- /src/third-party/libcss/test/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/dump.h -------------------------------------------------------------------------------- /src/third-party/libcss/test/dump_computed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/dump_computed.h -------------------------------------------------------------------------------- /src/third-party/libcss/test/lex-auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/lex-auto.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/lex.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/number.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/parse-auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/parse-auto.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/parse.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/parse2-auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/parse2-auto.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/select.c -------------------------------------------------------------------------------- /src/third-party/libcss/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libcss/test/testutils.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/CMakeLists.txt -------------------------------------------------------------------------------- /src/third-party/libparserutils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/COPYING -------------------------------------------------------------------------------- /src/third-party/libparserutils/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/Makefile.config -------------------------------------------------------------------------------- /src/third-party/libparserutils/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/Makefile.orig -------------------------------------------------------------------------------- /src/third-party/libparserutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/README -------------------------------------------------------------------------------- /src/third-party/libparserutils/docs/Todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/docs/Todo -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/charset/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/charset/codec.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/charset/mibenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/charset/mibenum.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/charset/utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/charset/utf16.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/charset/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/charset/utf8.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/errors.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/functypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/functypes.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/input/inputstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/input/inputstream.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/parserutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/parserutils.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/types.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/utils/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/utils/buffer.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/utils/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/utils/stack.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/include/parserutils/utils/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/include/parserutils/utils/vector.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/libparserutils.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/libparserutils.pc.in -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/aliases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/aliases.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/aliases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/aliases.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/aliases.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/aliases.inc -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codec.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/8859_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/8859_tables.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/codec_8859.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/codec_8859.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/codec_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/codec_ascii.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/codec_ext8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/codec_ext8.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/codec_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/codec_impl.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/codec_utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/codec_utf16.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/codec_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/codec_utf8.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/codecs/ext8_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/codecs/ext8_tables.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/encodings/utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/encodings/utf16.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/encodings/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/encodings/utf8.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/charset/encodings/utf8impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/charset/encodings/utf8impl.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/input/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/input/filter.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/input/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/input/filter.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/input/inputstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/input/inputstream.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/utils/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/utils/buffer.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/utils/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/utils/endian.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/utils/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/utils/errors.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/utils/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/utils/stack.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/utils/utils.h -------------------------------------------------------------------------------- /src/third-party/libparserutils/src/utils/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/src/utils/vector.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/README -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/aliases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/aliases.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/cscodec-8859.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/cscodec-8859.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/cscodec-ext8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/cscodec-ext8.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/cscodec-utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/cscodec-utf16.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/cscodec-utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/cscodec-utf8.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/1.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/10.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/11.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/13.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/14.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/15.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/16.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/2.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/3.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/4.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/5.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/6.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/7.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/8.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/9.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-8859/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-8859/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1250.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1250.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1251.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1251.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1252.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1252.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1253.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1253.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1254.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1254.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1255.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1255.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1256.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1256.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1257.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1257.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-ext8/cp1258.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-ext8/cp1258.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-utf16/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-utf16/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-utf16/simple.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-utf16/simple.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-utf8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-utf8/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-utf8/UTF-8-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-utf8/UTF-8-test.txt -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/cscodec-utf8/simple.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/cscodec-utf8/simple.dat -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/input/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/input/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/data/input/UTF-8-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/data/input/UTF-8-test.txt -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/filter.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/inputstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/inputstream.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/regression/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/regression/INDEX -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/regression/buffer-discard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/regression/buffer-discard.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/regression/filter-badenc-segv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/regression/filter-badenc-segv.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/regression/filter-segv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/regression/filter-segv.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/regression/stream-nomem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/regression/stream-nomem.c -------------------------------------------------------------------------------- /src/third-party/libparserutils/test/testutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libparserutils/test/testutils.h -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/CMakeLists.txt -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/COPYING -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/Makefile.orig -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/README -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/docs/Doxyfile -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/include/libwapcaplet/libwapcaplet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/include/libwapcaplet/libwapcaplet.h -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/libwapcaplet.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/libwapcaplet.pc.in -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/src/libwapcaplet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/src/libwapcaplet.c -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/test/basictests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/test/basictests.c -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/test/testmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/test/testmain.c -------------------------------------------------------------------------------- /src/third-party/libwapcaplet/test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/third-party/libwapcaplet/test/tests.h -------------------------------------------------------------------------------- /src/tools/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/tools/debian/changelog -------------------------------------------------------------------------------- /src/tools/debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /src/tools/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/tools/debian/control -------------------------------------------------------------------------------- /src/tools/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HVML/DOM-Ruler/HEAD/src/tools/debian/copyright -------------------------------------------------------------------------------- /src/tools/debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/tools/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | --------------------------------------------------------------------------------