Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /* keywords used within CSS property values */ |
michael@0 | 7 | |
michael@0 | 8 | /****** |
michael@0 | 9 | |
michael@0 | 10 | This file contains the list of all parsed CSS keywords |
michael@0 | 11 | See nsCSSKeywords.h for access to the enum values for keywords |
michael@0 | 12 | |
michael@0 | 13 | It is designed to be used as inline input to nsCSSKeywords.cpp *only* |
michael@0 | 14 | through the magic of C preprocessing. |
michael@0 | 15 | |
michael@0 | 16 | All entries must be enclosed in the macro CSS_KEY which will have cruel |
michael@0 | 17 | and unusual things done to it |
michael@0 | 18 | |
michael@0 | 19 | It is recommended (but not strictly necessary) to keep all entries |
michael@0 | 20 | in alphabetical order |
michael@0 | 21 | |
michael@0 | 22 | Requirements: |
michael@0 | 23 | |
michael@0 | 24 | Entries are in the form: (name, id). 'id' must always be the same as 'name' |
michael@0 | 25 | except that all hyphens ('-') in 'name' are converted to underscores ('_') |
michael@0 | 26 | in 'id'. This lets us do nice things with the macros without having to |
michael@0 | 27 | copy/convert strings at runtime. |
michael@0 | 28 | |
michael@0 | 29 | 'name' entries *must* use only lowercase characters. |
michael@0 | 30 | |
michael@0 | 31 | ** Break these invariants and bad things will happen. ** |
michael@0 | 32 | |
michael@0 | 33 | ******/ |
michael@0 | 34 | |
michael@0 | 35 | // OUTPUT_CLASS=nsCSSKeywords |
michael@0 | 36 | // MACRO_NAME=CSS_KEY |
michael@0 | 37 | |
michael@0 | 38 | CSS_KEY(-moz-activehyperlinktext, _moz_activehyperlinktext) |
michael@0 | 39 | CSS_KEY(-moz-all, _moz_all) |
michael@0 | 40 | CSS_KEY(-moz-alt-content, _moz_alt_content) |
michael@0 | 41 | CSS_KEY(-moz-anchor-decoration, _moz_anchor_decoration) |
michael@0 | 42 | CSS_KEY(-moz-arabic-indic, _moz_arabic_indic) |
michael@0 | 43 | CSS_KEY(-moz-available, _moz_available) |
michael@0 | 44 | CSS_KEY(-moz-bengali, _moz_bengali) |
michael@0 | 45 | CSS_KEY(-moz-box, _moz_box) |
michael@0 | 46 | CSS_KEY(-moz-button, _moz_button) |
michael@0 | 47 | CSS_KEY(-moz-buttondefault, _moz_buttondefault) |
michael@0 | 48 | CSS_KEY(-moz-buttonhoverface, _moz_buttonhoverface) |
michael@0 | 49 | CSS_KEY(-moz-buttonhovertext, _moz_buttonhovertext) |
michael@0 | 50 | CSS_KEY(-moz-cellhighlight, _moz_cellhighlight) |
michael@0 | 51 | CSS_KEY(-moz-cellhighlighttext, _moz_cellhighlighttext) |
michael@0 | 52 | CSS_KEY(-moz-center, _moz_center) |
michael@0 | 53 | CSS_KEY(-moz-cjk-earthly-branch, _moz_cjk_earthly_branch) |
michael@0 | 54 | CSS_KEY(-moz-cjk-heavenly-stem, _moz_cjk_heavenly_stem) |
michael@0 | 55 | CSS_KEY(-moz-combobox, _moz_combobox) |
michael@0 | 56 | CSS_KEY(-moz-comboboxtext, _moz_comboboxtext) |
michael@0 | 57 | CSS_KEY(-moz-block-height, _moz_block_height) |
michael@0 | 58 | CSS_KEY(-moz-deck, _moz_deck) |
michael@0 | 59 | CSS_KEY(-moz-default-background-color, _moz_default_background_color) |
michael@0 | 60 | CSS_KEY(-moz-default-color, _moz_default_color) |
michael@0 | 61 | CSS_KEY(-moz-desktop, _moz_desktop) |
michael@0 | 62 | CSS_KEY(-moz-devanagari, _moz_devanagari) |
michael@0 | 63 | CSS_KEY(-moz-dialog, _moz_dialog) |
michael@0 | 64 | CSS_KEY(-moz-dialogtext, _moz_dialogtext) |
michael@0 | 65 | CSS_KEY(-moz-document, _moz_document) |
michael@0 | 66 | CSS_KEY(-moz-dragtargetzone, _moz_dragtargetzone) |
michael@0 | 67 | CSS_KEY(-moz-element, _moz_element) |
michael@0 | 68 | CSS_KEY(-moz-eventreerow, _moz_eventreerow) |
michael@0 | 69 | CSS_KEY(-moz-ethiopic-halehame, _moz_ethiopic_halehame) |
michael@0 | 70 | CSS_KEY(-moz-ethiopic-numeric, _moz_ethiopic_numeric) |
michael@0 | 71 | CSS_KEY(-moz-ethiopic-halehame-am, _moz_ethiopic_halehame_am) |
michael@0 | 72 | CSS_KEY(-moz-ethiopic-halehame-ti-er, _moz_ethiopic_halehame_ti_er) |
michael@0 | 73 | CSS_KEY(-moz-ethiopic-halehame-ti-et, _moz_ethiopic_halehame_ti_et) |
michael@0 | 74 | CSS_KEY(-moz-field, _moz_field) |
michael@0 | 75 | CSS_KEY(-moz-fieldtext, _moz_fieldtext) |
michael@0 | 76 | CSS_KEY(-moz-fit-content, _moz_fit_content) |
michael@0 | 77 | CSS_KEY(-moz-grabbing, _moz_grabbing) |
michael@0 | 78 | CSS_KEY(-moz-grab, _moz_grab) |
michael@0 | 79 | CSS_KEY(-moz-grid-group, _moz_grid_group) |
michael@0 | 80 | CSS_KEY(-moz-grid-line, _moz_grid_line) |
michael@0 | 81 | CSS_KEY(-moz-grid, _moz_grid) |
michael@0 | 82 | CSS_KEY(-moz-groupbox, _moz_groupbox) |
michael@0 | 83 | CSS_KEY(-moz-gujarati, _moz_gujarati) |
michael@0 | 84 | CSS_KEY(-moz-gurmukhi, _moz_gurmukhi) |
michael@0 | 85 | CSS_KEY(-moz-hangul-consonant, _moz_hangul_consonant) |
michael@0 | 86 | CSS_KEY(-moz-hidden-unscrollable, _moz_hidden_unscrollable) |
michael@0 | 87 | CSS_KEY(-moz-hangul, _moz_hangul) |
michael@0 | 88 | CSS_KEY(-moz-hyperlinktext, _moz_hyperlinktext) |
michael@0 | 89 | CSS_KEY(-moz-html-cellhighlight, _moz_html_cellhighlight) |
michael@0 | 90 | CSS_KEY(-moz-html-cellhighlighttext, _moz_html_cellhighlighttext) |
michael@0 | 91 | CSS_KEY(-moz-image-rect, _moz_image_rect) |
michael@0 | 92 | CSS_KEY(-moz-info, _moz_info) |
michael@0 | 93 | CSS_KEY(-moz-inline-box, _moz_inline_box) |
michael@0 | 94 | CSS_KEY(-moz-inline-grid, _moz_inline_grid) |
michael@0 | 95 | CSS_KEY(-moz-inline-stack, _moz_inline_stack) |
michael@0 | 96 | CSS_KEY(-moz-isolate, _moz_isolate) |
michael@0 | 97 | CSS_KEY(-moz-isolate-override, _moz_isolate_override) |
michael@0 | 98 | CSS_KEY(-moz-japanese-formal, _moz_japanese_formal) |
michael@0 | 99 | CSS_KEY(-moz-japanese-informal, _moz_japanese_informal) |
michael@0 | 100 | CSS_KEY(-moz-kannada, _moz_kannada) |
michael@0 | 101 | CSS_KEY(-moz-khmer, _moz_khmer) |
michael@0 | 102 | CSS_KEY(-moz-lao, _moz_lao) |
michael@0 | 103 | CSS_KEY(-moz-left, _moz_left) |
michael@0 | 104 | CSS_KEY(-moz-list, _moz_list) |
michael@0 | 105 | CSS_KEY(-moz-mac-chrome-active, _moz_mac_chrome_active) |
michael@0 | 106 | CSS_KEY(-moz-mac-chrome-inactive, _moz_mac_chrome_inactive) |
michael@0 | 107 | CSS_KEY(-moz-mac-focusring, _moz_mac_focusring) |
michael@0 | 108 | CSS_KEY(-moz-mac-fullscreen-button, _moz_mac_fullscreen_button) |
michael@0 | 109 | CSS_KEY(-moz-mac-menuselect, _moz_mac_menuselect) |
michael@0 | 110 | CSS_KEY(-moz-mac-menushadow, _moz_mac_menushadow) |
michael@0 | 111 | CSS_KEY(-moz-mac-menutextdisable, _moz_mac_menutextdisable) |
michael@0 | 112 | CSS_KEY(-moz-mac-menutextselect, _moz_mac_menutextselect) |
michael@0 | 113 | CSS_KEY(-moz-mac-disabledtoolbartext, _moz_mac_disabledtoolbartext) |
michael@0 | 114 | CSS_KEY(-moz-mac-secondaryhighlight, _moz_mac_secondaryhighlight) |
michael@0 | 115 | CSS_KEY(-moz-malayalam, _moz_malayalam) |
michael@0 | 116 | CSS_KEY(-moz-max-content, _moz_max_content) |
michael@0 | 117 | CSS_KEY(-moz-menuhover, _moz_menuhover) |
michael@0 | 118 | CSS_KEY(-moz-menuhovertext, _moz_menuhovertext) |
michael@0 | 119 | CSS_KEY(-moz-menubartext, _moz_menubartext) |
michael@0 | 120 | CSS_KEY(-moz-menubarhovertext, _moz_menubarhovertext) |
michael@0 | 121 | CSS_KEY(-moz-middle-with-baseline, _moz_middle_with_baseline) |
michael@0 | 122 | CSS_KEY(-moz-min-content, _moz_min_content) |
michael@0 | 123 | CSS_KEY(-moz-myanmar, _moz_myanmar) |
michael@0 | 124 | CSS_KEY(-moz-nativehyperlinktext, _moz_nativehyperlinktext) |
michael@0 | 125 | CSS_KEY(-moz-none, _moz_none) |
michael@0 | 126 | CSS_KEY(-moz-oddtreerow, _moz_oddtreerow) |
michael@0 | 127 | CSS_KEY(-moz-oriya, _moz_oriya) |
michael@0 | 128 | CSS_KEY(-moz-persian, _moz_persian) |
michael@0 | 129 | CSS_KEY(-moz-plaintext, _moz_plaintext) |
michael@0 | 130 | CSS_KEY(-moz-popup, _moz_popup) |
michael@0 | 131 | CSS_KEY(-moz-pre-discard-newlines, _moz_pre_discard_newlines) |
michael@0 | 132 | CSS_KEY(-moz-pull-down-menu, _moz_pull_down_menu) |
michael@0 | 133 | CSS_KEY(-moz-right, _moz_right) |
michael@0 | 134 | CSS_KEY(-moz-scrollbars-horizontal, _moz_scrollbars_horizontal) |
michael@0 | 135 | CSS_KEY(-moz-scrollbars-none, _moz_scrollbars_none) |
michael@0 | 136 | CSS_KEY(-moz-scrollbars-vertical, _moz_scrollbars_vertical) |
michael@0 | 137 | CSS_KEY(-moz-show-background, _moz_show_background) |
michael@0 | 138 | CSS_KEY(-moz-simp-chinese-formal, _moz_simp_chinese_formal) |
michael@0 | 139 | CSS_KEY(-moz-simp-chinese-informal, _moz_simp_chinese_informal) |
michael@0 | 140 | CSS_KEY(-moz-stack, _moz_stack) |
michael@0 | 141 | CSS_KEY(-moz-tamil, _moz_tamil) |
michael@0 | 142 | CSS_KEY(-moz-telugu, _moz_telugu) |
michael@0 | 143 | CSS_KEY(-moz-thai, _moz_thai) |
michael@0 | 144 | CSS_KEY(-moz-trad-chinese-formal, _moz_trad_chinese_formal) |
michael@0 | 145 | CSS_KEY(-moz-trad-chinese-informal, _moz_trad_chinese_informal) |
michael@0 | 146 | CSS_KEY(-moz-urdu, _moz_urdu) |
michael@0 | 147 | CSS_KEY(-moz-use-system-font, _moz_use_system_font) |
michael@0 | 148 | CSS_KEY(-moz-use-text-color, _moz_use_text_color) |
michael@0 | 149 | CSS_KEY(-moz-visitedhyperlinktext, _moz_visitedhyperlinktext) |
michael@0 | 150 | CSS_KEY(-moz-window, _moz_window) |
michael@0 | 151 | CSS_KEY(-moz-workspace, _moz_workspace) |
michael@0 | 152 | CSS_KEY(-moz-zoom-in, _moz_zoom_in) |
michael@0 | 153 | CSS_KEY(-moz-zoom-out, _moz_zoom_out) |
michael@0 | 154 | CSS_KEY(absolute, absolute) |
michael@0 | 155 | CSS_KEY(active, active) |
michael@0 | 156 | CSS_KEY(activeborder, activeborder) |
michael@0 | 157 | CSS_KEY(activecaption, activecaption) |
michael@0 | 158 | CSS_KEY(alias, alias) |
michael@0 | 159 | CSS_KEY(all, all) |
michael@0 | 160 | CSS_KEY(all-petite-caps, all_petite_caps) |
michael@0 | 161 | CSS_KEY(all-scroll, all_scroll) |
michael@0 | 162 | CSS_KEY(all-small-caps, all_small_caps) |
michael@0 | 163 | CSS_KEY(alpha, alpha) |
michael@0 | 164 | CSS_KEY(alternate, alternate) |
michael@0 | 165 | CSS_KEY(alternate-reverse, alternate_reverse) |
michael@0 | 166 | CSS_KEY(always, always) |
michael@0 | 167 | CSS_KEY(annotation, annotation) |
michael@0 | 168 | CSS_KEY(appworkspace, appworkspace) |
michael@0 | 169 | CSS_KEY(armenian, armenian) |
michael@0 | 170 | CSS_KEY(auto, auto) |
michael@0 | 171 | CSS_KEY(avoid, avoid) |
michael@0 | 172 | CSS_KEY(background, background) |
michael@0 | 173 | CSS_KEY(backwards, backwards) |
michael@0 | 174 | CSS_KEY(balance, balance) |
michael@0 | 175 | CSS_KEY(baseline, baseline) |
michael@0 | 176 | CSS_KEY(bidi-override, bidi_override) |
michael@0 | 177 | CSS_KEY(blink, blink) |
michael@0 | 178 | CSS_KEY(block, block) |
michael@0 | 179 | CSS_KEY(block-axis, block_axis) |
michael@0 | 180 | CSS_KEY(blur, blur) |
michael@0 | 181 | CSS_KEY(bold, bold) |
michael@0 | 182 | CSS_KEY(bold-fraktur, bold_fraktur) |
michael@0 | 183 | CSS_KEY(bold-italic, bold_italic) |
michael@0 | 184 | CSS_KEY(bold-sans-serif, bold_sans_serif) |
michael@0 | 185 | CSS_KEY(bold-script, bold_script) |
michael@0 | 186 | CSS_KEY(bolder, bolder) |
michael@0 | 187 | CSS_KEY(border-box, border_box) |
michael@0 | 188 | CSS_KEY(both, both) |
michael@0 | 189 | CSS_KEY(bottom, bottom) |
michael@0 | 190 | CSS_KEY(bottom-outside, bottom_outside) |
michael@0 | 191 | CSS_KEY(bounding-box, bounding_box) |
michael@0 | 192 | CSS_KEY(break-all, break_all) |
michael@0 | 193 | CSS_KEY(break-word, break_word) |
michael@0 | 194 | CSS_KEY(brightness, brightness) |
michael@0 | 195 | CSS_KEY(button, button) |
michael@0 | 196 | CSS_KEY(buttonface, buttonface) |
michael@0 | 197 | CSS_KEY(buttonhighlight, buttonhighlight) |
michael@0 | 198 | CSS_KEY(buttonshadow, buttonshadow) |
michael@0 | 199 | CSS_KEY(buttontext, buttontext) |
michael@0 | 200 | CSS_KEY(capitalize, capitalize) |
michael@0 | 201 | CSS_KEY(caption, caption) |
michael@0 | 202 | CSS_KEY(captiontext, captiontext) |
michael@0 | 203 | CSS_KEY(cell, cell) |
michael@0 | 204 | CSS_KEY(center, center) |
michael@0 | 205 | CSS_KEY(ch, ch) |
michael@0 | 206 | CSS_KEY(character-variant, character_variant) |
michael@0 | 207 | CSS_KEY(circle, circle) |
michael@0 | 208 | CSS_KEY(cjk-decimal, cjk_decimal) |
michael@0 | 209 | CSS_KEY(cjk-ideographic, cjk_ideographic) |
michael@0 | 210 | CSS_KEY(clip, clip) |
michael@0 | 211 | CSS_KEY(close-quote, close_quote) |
michael@0 | 212 | CSS_KEY(closest-corner, closest_corner) |
michael@0 | 213 | CSS_KEY(closest-side, closest_side) |
michael@0 | 214 | CSS_KEY(cm, cm) |
michael@0 | 215 | CSS_KEY(col-resize, col_resize) |
michael@0 | 216 | CSS_KEY(collapse, collapse) |
michael@0 | 217 | CSS_KEY(color, color) |
michael@0 | 218 | CSS_KEY(color-burn, color_burn) |
michael@0 | 219 | CSS_KEY(color-dodge, color_dodge) |
michael@0 | 220 | CSS_KEY(common-ligatures, common_ligatures) |
michael@0 | 221 | CSS_KEY(column, column) |
michael@0 | 222 | CSS_KEY(column-reverse, column_reverse) |
michael@0 | 223 | CSS_KEY(condensed, condensed) |
michael@0 | 224 | CSS_KEY(contain, contain) |
michael@0 | 225 | CSS_KEY(content-box, content_box) |
michael@0 | 226 | CSS_KEY(context-fill, context_fill) |
michael@0 | 227 | CSS_KEY(context-fill-opacity, context_fill_opacity) |
michael@0 | 228 | CSS_KEY(context-menu, context_menu) |
michael@0 | 229 | CSS_KEY(context-stroke, context_stroke) |
michael@0 | 230 | CSS_KEY(context-stroke-opacity, context_stroke_opacity) |
michael@0 | 231 | CSS_KEY(context-value, context_value) |
michael@0 | 232 | CSS_KEY(continuous, continuous) |
michael@0 | 233 | CSS_KEY(contrast, contrast) |
michael@0 | 234 | CSS_KEY(copy, copy) |
michael@0 | 235 | CSS_KEY(contextual, contextual) |
michael@0 | 236 | CSS_KEY(cover, cover) |
michael@0 | 237 | CSS_KEY(crop, crop) |
michael@0 | 238 | CSS_KEY(cross, cross) |
michael@0 | 239 | CSS_KEY(crosshair, crosshair) |
michael@0 | 240 | CSS_KEY(currentcolor, currentcolor) |
michael@0 | 241 | CSS_KEY(darken, darken) |
michael@0 | 242 | CSS_KEY(dashed, dashed) |
michael@0 | 243 | CSS_KEY(dense, dense) |
michael@0 | 244 | CSS_KEY(decimal, decimal) |
michael@0 | 245 | CSS_KEY(decimal-leading-zero, decimal_leading_zero) |
michael@0 | 246 | CSS_KEY(default, default) |
michael@0 | 247 | CSS_KEY(deg, deg) |
michael@0 | 248 | CSS_KEY(diagonal-fractions, diagonal_fractions) |
michael@0 | 249 | CSS_KEY(dialog, dialog) |
michael@0 | 250 | CSS_KEY(difference, difference) |
michael@0 | 251 | CSS_KEY(digits, digits) |
michael@0 | 252 | CSS_KEY(disabled, disabled) |
michael@0 | 253 | CSS_KEY(disc, disc) |
michael@0 | 254 | CSS_KEY(discretionary-ligatures, discretionary_ligatures) |
michael@0 | 255 | CSS_KEY(dotted, dotted) |
michael@0 | 256 | CSS_KEY(double, double) |
michael@0 | 257 | CSS_KEY(double-struck, double_struck) |
michael@0 | 258 | CSS_KEY(drop-shadow, drop_shadow) |
michael@0 | 259 | CSS_KEY(e-resize, e_resize) |
michael@0 | 260 | CSS_KEY(each-box, each_box) |
michael@0 | 261 | CSS_KEY(ease, ease) |
michael@0 | 262 | CSS_KEY(ease-in, ease_in) |
michael@0 | 263 | CSS_KEY(ease-in-out, ease_in_out) |
michael@0 | 264 | CSS_KEY(ease-out, ease_out) |
michael@0 | 265 | CSS_KEY(element, element) |
michael@0 | 266 | CSS_KEY(elements, elements) |
michael@0 | 267 | CSS_KEY(ellipse, ellipse) |
michael@0 | 268 | CSS_KEY(ellipsis, ellipsis) |
michael@0 | 269 | CSS_KEY(em, em) |
michael@0 | 270 | CSS_KEY(embed, embed) |
michael@0 | 271 | CSS_KEY(enabled, enabled) |
michael@0 | 272 | CSS_KEY(end, end) |
michael@0 | 273 | CSS_KEY(ex, ex) |
michael@0 | 274 | CSS_KEY(exclusion, exclusion) |
michael@0 | 275 | CSS_KEY(expanded, expanded) |
michael@0 | 276 | CSS_KEY(extra-condensed, extra_condensed) |
michael@0 | 277 | CSS_KEY(extra-expanded, extra_expanded) |
michael@0 | 278 | CSS_KEY(ew-resize, ew_resize) |
michael@0 | 279 | CSS_KEY(farthest-side, farthest_side) |
michael@0 | 280 | CSS_KEY(farthest-corner, farthest_corner) |
michael@0 | 281 | CSS_KEY(fill, fill) |
michael@0 | 282 | CSS_KEY(fixed, fixed) |
michael@0 | 283 | CSS_KEY(flat, flat) |
michael@0 | 284 | CSS_KEY(flex, flex) |
michael@0 | 285 | CSS_KEY(flex-end, flex_end) |
michael@0 | 286 | CSS_KEY(flex-start, flex_start) |
michael@0 | 287 | CSS_KEY(flip, flip) |
michael@0 | 288 | CSS_KEY(forwards, forwards) |
michael@0 | 289 | CSS_KEY(fraktur, fraktur) |
michael@0 | 290 | CSS_KEY(from-image, from_image) |
michael@0 | 291 | CSS_KEY(full-width, full_width) |
michael@0 | 292 | CSS_KEY(georgian, georgian) |
michael@0 | 293 | CSS_KEY(grab, grab) |
michael@0 | 294 | CSS_KEY(grabbing, grabbing) |
michael@0 | 295 | CSS_KEY(grad, grad) |
michael@0 | 296 | CSS_KEY(grayscale, grayscale) |
michael@0 | 297 | CSS_KEY(graytext, graytext) |
michael@0 | 298 | CSS_KEY(grid, grid) |
michael@0 | 299 | CSS_KEY(groove, groove) |
michael@0 | 300 | CSS_KEY(hard-light, hard_light) |
michael@0 | 301 | CSS_KEY(hebrew, hebrew) |
michael@0 | 302 | CSS_KEY(help, help) |
michael@0 | 303 | CSS_KEY(hidden, hidden) |
michael@0 | 304 | CSS_KEY(hide, hide) |
michael@0 | 305 | CSS_KEY(highlight, highlight) |
michael@0 | 306 | CSS_KEY(highlighttext, highlighttext) |
michael@0 | 307 | CSS_KEY(hiragana, hiragana) |
michael@0 | 308 | CSS_KEY(hiragana-iroha, hiragana_iroha) |
michael@0 | 309 | CSS_KEY(historical-forms, historical_forms) |
michael@0 | 310 | CSS_KEY(historical-ligatures, historical_ligatures) |
michael@0 | 311 | CSS_KEY(horizontal, horizontal) |
michael@0 | 312 | CSS_KEY(horizontal-tb, horizontal_tb) |
michael@0 | 313 | CSS_KEY(hue, hue) |
michael@0 | 314 | CSS_KEY(hue-rotate, hue_rotate) |
michael@0 | 315 | CSS_KEY(hz, hz) |
michael@0 | 316 | CSS_KEY(icon, icon) |
michael@0 | 317 | CSS_KEY(ignore, ignore) |
michael@0 | 318 | CSS_KEY(in, in) |
michael@0 | 319 | CSS_KEY(interlace, interlace) |
michael@0 | 320 | CSS_KEY(inactive, inactive) |
michael@0 | 321 | CSS_KEY(inactiveborder, inactiveborder) |
michael@0 | 322 | CSS_KEY(inactivecaption, inactivecaption) |
michael@0 | 323 | CSS_KEY(inactivecaptiontext, inactivecaptiontext) |
michael@0 | 324 | CSS_KEY(infinite, infinite) |
michael@0 | 325 | CSS_KEY(infobackground, infobackground) |
michael@0 | 326 | CSS_KEY(infotext, infotext) |
michael@0 | 327 | CSS_KEY(inherit, inherit) |
michael@0 | 328 | CSS_KEY(initial, initial) |
michael@0 | 329 | CSS_KEY(inline, inline) |
michael@0 | 330 | CSS_KEY(inline-axis, inline_axis) |
michael@0 | 331 | CSS_KEY(inline-block, inline_block) |
michael@0 | 332 | CSS_KEY(inline-flex, inline_flex) |
michael@0 | 333 | CSS_KEY(inline-grid, inline_grid) |
michael@0 | 334 | CSS_KEY(inline-table, inline_table) |
michael@0 | 335 | CSS_KEY(inset, inset) |
michael@0 | 336 | CSS_KEY(inside, inside) |
michael@0 | 337 | CSS_KEY(interpolatematrix, interpolatematrix) |
michael@0 | 338 | CSS_KEY(invert, invert) |
michael@0 | 339 | CSS_KEY(italic, italic) |
michael@0 | 340 | CSS_KEY(japanese-formal, japanese_formal) |
michael@0 | 341 | CSS_KEY(japanese-informal, japanese_informal) |
michael@0 | 342 | CSS_KEY(jis78, jis78) |
michael@0 | 343 | CSS_KEY(jis83, jis83) |
michael@0 | 344 | CSS_KEY(jis90, jis90) |
michael@0 | 345 | CSS_KEY(jis04, jis04) |
michael@0 | 346 | CSS_KEY(justify, justify) |
michael@0 | 347 | CSS_KEY(katakana, katakana) |
michael@0 | 348 | CSS_KEY(katakana-iroha, katakana_iroha) |
michael@0 | 349 | CSS_KEY(keep-all, keep_all) |
michael@0 | 350 | CSS_KEY(khz, khz) |
michael@0 | 351 | CSS_KEY(korean-hangul-formal, korean_hangul_formal) |
michael@0 | 352 | CSS_KEY(korean-hanja-formal, korean_hanja_formal) |
michael@0 | 353 | CSS_KEY(korean-hanja-informal, korean_hanja_informal) |
michael@0 | 354 | CSS_KEY(landscape, landscape) |
michael@0 | 355 | CSS_KEY(large, large) |
michael@0 | 356 | CSS_KEY(larger, larger) |
michael@0 | 357 | CSS_KEY(left, left) |
michael@0 | 358 | CSS_KEY(lighten, lighten) |
michael@0 | 359 | CSS_KEY(lighter, lighter) |
michael@0 | 360 | CSS_KEY(line-through, line_through) |
michael@0 | 361 | CSS_KEY(linear, linear) |
michael@0 | 362 | CSS_KEY(lining-nums, lining_nums) |
michael@0 | 363 | CSS_KEY(list-item, list_item) |
michael@0 | 364 | CSS_KEY(local, local) |
michael@0 | 365 | CSS_KEY(logical, logical) |
michael@0 | 366 | CSS_KEY(looped, looped) |
michael@0 | 367 | CSS_KEY(lower-alpha, lower_alpha) |
michael@0 | 368 | CSS_KEY(lower-greek, lower_greek) |
michael@0 | 369 | CSS_KEY(lower-latin, lower_latin) |
michael@0 | 370 | CSS_KEY(lower-roman, lower_roman) |
michael@0 | 371 | CSS_KEY(lowercase, lowercase) |
michael@0 | 372 | CSS_KEY(ltr, ltr) |
michael@0 | 373 | CSS_KEY(luminance, luminance) |
michael@0 | 374 | CSS_KEY(luminosity, luminosity) |
michael@0 | 375 | CSS_KEY(manipulation, manipulation) |
michael@0 | 376 | CSS_KEY(manual, manual) |
michael@0 | 377 | CSS_KEY(margin-box, margin_box) |
michael@0 | 378 | CSS_KEY(markers, markers) |
michael@0 | 379 | CSS_KEY(matrix, matrix) |
michael@0 | 380 | CSS_KEY(matrix3d, matrix3d) |
michael@0 | 381 | CSS_KEY(max-content, max_content) |
michael@0 | 382 | CSS_KEY(medium, medium) |
michael@0 | 383 | CSS_KEY(menu, menu) |
michael@0 | 384 | CSS_KEY(menutext, menutext) |
michael@0 | 385 | CSS_KEY(message-box, message_box) |
michael@0 | 386 | CSS_KEY(middle, middle) |
michael@0 | 387 | CSS_KEY(min-content, min_content) |
michael@0 | 388 | CSS_KEY(minmax, minmax) |
michael@0 | 389 | CSS_KEY(mix, mix) |
michael@0 | 390 | CSS_KEY(mm, mm) |
michael@0 | 391 | CSS_KEY(monospace, monospace) |
michael@0 | 392 | CSS_KEY(move, move) |
michael@0 | 393 | CSS_KEY(ms, ms) |
michael@0 | 394 | CSS_KEY(multiply, multiply) |
michael@0 | 395 | CSS_KEY(n-resize, n_resize) |
michael@0 | 396 | CSS_KEY(narrower, narrower) |
michael@0 | 397 | CSS_KEY(ne-resize, ne_resize) |
michael@0 | 398 | CSS_KEY(nesw-resize, nesw_resize) |
michael@0 | 399 | CSS_KEY(no-close-quote, no_close_quote) |
michael@0 | 400 | CSS_KEY(no-common-ligatures, no_common_ligatures) |
michael@0 | 401 | CSS_KEY(no-contextual, no_contextual) |
michael@0 | 402 | CSS_KEY(no-discretionary-ligatures, no_discretionary_ligatures) |
michael@0 | 403 | CSS_KEY(no-drop, no_drop) |
michael@0 | 404 | CSS_KEY(no-historical-ligatures, no_historical_ligatures) |
michael@0 | 405 | CSS_KEY(no-open-quote, no_open_quote) |
michael@0 | 406 | CSS_KEY(no-repeat, no_repeat) |
michael@0 | 407 | CSS_KEY(none, none) |
michael@0 | 408 | CSS_KEY(normal, normal) |
michael@0 | 409 | CSS_KEY(not-allowed, not_allowed) |
michael@0 | 410 | CSS_KEY(nowrap, nowrap) |
michael@0 | 411 | CSS_KEY(ns-resize, ns_resize) |
michael@0 | 412 | CSS_KEY(nw-resize, nw_resize) |
michael@0 | 413 | CSS_KEY(nwse-resize, nwse_resize) |
michael@0 | 414 | CSS_KEY(oblique, oblique) |
michael@0 | 415 | CSS_KEY(oldstyle-nums, oldstyle_nums) |
michael@0 | 416 | CSS_KEY(opacity, opacity) |
michael@0 | 417 | CSS_KEY(open-quote, open_quote) |
michael@0 | 418 | CSS_KEY(ordinal, ordinal) |
michael@0 | 419 | CSS_KEY(ornaments, ornaments) |
michael@0 | 420 | CSS_KEY(outset, outset) |
michael@0 | 421 | CSS_KEY(outside, outside) |
michael@0 | 422 | CSS_KEY(overlay, overlay) |
michael@0 | 423 | CSS_KEY(overline, overline) |
michael@0 | 424 | CSS_KEY(padding-box, padding_box) |
michael@0 | 425 | CSS_KEY(painted, painted) |
michael@0 | 426 | CSS_KEY(pan-x, pan_x) |
michael@0 | 427 | CSS_KEY(pan-y, pan_y) |
michael@0 | 428 | CSS_KEY(paused, paused) |
michael@0 | 429 | CSS_KEY(pc, pc) |
michael@0 | 430 | CSS_KEY(perspective, perspective) |
michael@0 | 431 | CSS_KEY(petite-caps, petite_caps) |
michael@0 | 432 | CSS_KEY(physical, physical) |
michael@0 | 433 | CSS_KEY(pointer, pointer) |
michael@0 | 434 | CSS_KEY(portrait, portrait) |
michael@0 | 435 | CSS_KEY(pre, pre) |
michael@0 | 436 | CSS_KEY(pre-wrap, pre_wrap) |
michael@0 | 437 | CSS_KEY(pre-line, pre_line) |
michael@0 | 438 | CSS_KEY(preserve-3d, preserve_3d) |
michael@0 | 439 | CSS_KEY(progress, progress) |
michael@0 | 440 | CSS_KEY(progressive, progressive) |
michael@0 | 441 | CSS_KEY(proportional-nums, proportional_nums) |
michael@0 | 442 | CSS_KEY(proportional-width, proportional_width) |
michael@0 | 443 | CSS_KEY(pt, pt) |
michael@0 | 444 | CSS_KEY(px, px) |
michael@0 | 445 | CSS_KEY(rad, rad) |
michael@0 | 446 | CSS_KEY(read-only, read_only) |
michael@0 | 447 | CSS_KEY(read-write, read_write) |
michael@0 | 448 | CSS_KEY(relative, relative) |
michael@0 | 449 | CSS_KEY(repeat, repeat) |
michael@0 | 450 | CSS_KEY(repeat-x, repeat_x) |
michael@0 | 451 | CSS_KEY(repeat-y, repeat_y) |
michael@0 | 452 | CSS_KEY(reverse, reverse) |
michael@0 | 453 | CSS_KEY(ridge, ridge) |
michael@0 | 454 | CSS_KEY(right, right) |
michael@0 | 455 | CSS_KEY(rotate, rotate) |
michael@0 | 456 | CSS_KEY(rotate3d, rotate3d) |
michael@0 | 457 | CSS_KEY(rotatex, rotatex) |
michael@0 | 458 | CSS_KEY(rotatey, rotatey) |
michael@0 | 459 | CSS_KEY(rotatez, rotatez) |
michael@0 | 460 | CSS_KEY(round, round) |
michael@0 | 461 | CSS_KEY(row, row) |
michael@0 | 462 | CSS_KEY(row-resize, row_resize) |
michael@0 | 463 | CSS_KEY(row-reverse, row_reverse) |
michael@0 | 464 | CSS_KEY(rtl, rtl) |
michael@0 | 465 | CSS_KEY(ruby, ruby) |
michael@0 | 466 | CSS_KEY(running, running) |
michael@0 | 467 | CSS_KEY(s, s) |
michael@0 | 468 | CSS_KEY(s-resize, s_resize) |
michael@0 | 469 | CSS_KEY(saturate, saturate) |
michael@0 | 470 | CSS_KEY(saturation, saturation) |
michael@0 | 471 | CSS_KEY(scale, scale) |
michael@0 | 472 | CSS_KEY(scale3d, scale3d) |
michael@0 | 473 | CSS_KEY(scalex, scalex) |
michael@0 | 474 | CSS_KEY(scaley, scaley) |
michael@0 | 475 | CSS_KEY(scalez, scalez) |
michael@0 | 476 | CSS_KEY(screen, screen) |
michael@0 | 477 | CSS_KEY(script, script) |
michael@0 | 478 | CSS_KEY(scroll, scroll) |
michael@0 | 479 | CSS_KEY(scrollbar, scrollbar) |
michael@0 | 480 | CSS_KEY(scrollbar-small, scrollbar_small) |
michael@0 | 481 | CSS_KEY(se-resize, se_resize) |
michael@0 | 482 | CSS_KEY(select-after, select_after) |
michael@0 | 483 | CSS_KEY(select-all, select_all) |
michael@0 | 484 | CSS_KEY(select-before, select_before) |
michael@0 | 485 | CSS_KEY(select-menu, select_menu) |
michael@0 | 486 | CSS_KEY(select-same, select_same) |
michael@0 | 487 | CSS_KEY(semi-condensed, semi_condensed) |
michael@0 | 488 | CSS_KEY(semi-expanded, semi_expanded) |
michael@0 | 489 | CSS_KEY(separate, separate) |
michael@0 | 490 | CSS_KEY(sepia, sepia) |
michael@0 | 491 | CSS_KEY(show, show) |
michael@0 | 492 | CSS_KEY(sideways, sideways) |
michael@0 | 493 | CSS_KEY(simp-chinese-formal, simp_chinese_formal) |
michael@0 | 494 | CSS_KEY(simp-chinese-informal, simp_chinese_informal) |
michael@0 | 495 | CSS_KEY(simplified, simplified) |
michael@0 | 496 | CSS_KEY(skew, skew) |
michael@0 | 497 | CSS_KEY(skewx, skewx) |
michael@0 | 498 | CSS_KEY(skewy, skewy) |
michael@0 | 499 | CSS_KEY(slashed-zero, slashed_zero) |
michael@0 | 500 | CSS_KEY(small, small) |
michael@0 | 501 | CSS_KEY(small-caps, small_caps) |
michael@0 | 502 | CSS_KEY(small-caption, small_caption) |
michael@0 | 503 | CSS_KEY(smaller, smaller) |
michael@0 | 504 | CSS_KEY(soft, soft) |
michael@0 | 505 | CSS_KEY(soft-light, soft_light) |
michael@0 | 506 | CSS_KEY(solid, solid) |
michael@0 | 507 | CSS_KEY(space-around, space_around) |
michael@0 | 508 | CSS_KEY(space-between, space_between) |
michael@0 | 509 | CSS_KEY(span, span) |
michael@0 | 510 | CSS_KEY(square, square) |
michael@0 | 511 | CSS_KEY(stacked-fractions, stacked_fractions) |
michael@0 | 512 | CSS_KEY(start, start) |
michael@0 | 513 | CSS_KEY(static, static) |
michael@0 | 514 | CSS_KEY(status-bar, status_bar) |
michael@0 | 515 | CSS_KEY(step-end, step_end) |
michael@0 | 516 | CSS_KEY(step-start, step_start) |
michael@0 | 517 | CSS_KEY(sticky, sticky) |
michael@0 | 518 | CSS_KEY(stretch, stretch) |
michael@0 | 519 | CSS_KEY(stretch-to-fit, stretch_to_fit) |
michael@0 | 520 | CSS_KEY(stretched, stretched) |
michael@0 | 521 | CSS_KEY(stroke, stroke) |
michael@0 | 522 | CSS_KEY(style, style) |
michael@0 | 523 | CSS_KEY(styleset, styleset) |
michael@0 | 524 | CSS_KEY(stylistic, stylistic) |
michael@0 | 525 | CSS_KEY(sub, sub) |
michael@0 | 526 | CSS_KEY(subgrid, subgrid) |
michael@0 | 527 | CSS_KEY(super, super) |
michael@0 | 528 | CSS_KEY(sw-resize, sw_resize) |
michael@0 | 529 | CSS_KEY(swash, swash) |
michael@0 | 530 | CSS_KEY(table, table) |
michael@0 | 531 | CSS_KEY(table-caption, table_caption) |
michael@0 | 532 | CSS_KEY(table-cell, table_cell) |
michael@0 | 533 | CSS_KEY(table-column, table_column) |
michael@0 | 534 | CSS_KEY(table-column-group, table_column_group) |
michael@0 | 535 | CSS_KEY(table-footer-group, table_footer_group) |
michael@0 | 536 | CSS_KEY(table-header-group, table_header_group) |
michael@0 | 537 | CSS_KEY(table-row, table_row) |
michael@0 | 538 | CSS_KEY(table-row-group, table_row_group) |
michael@0 | 539 | CSS_KEY(tabular-nums, tabular_nums) |
michael@0 | 540 | CSS_KEY(tailed, tailed) |
michael@0 | 541 | CSS_KEY(text, text) |
michael@0 | 542 | CSS_KEY(text-bottom, text_bottom) |
michael@0 | 543 | CSS_KEY(text-top, text_top) |
michael@0 | 544 | CSS_KEY(thick, thick) |
michael@0 | 545 | CSS_KEY(thin, thin) |
michael@0 | 546 | CSS_KEY(threeddarkshadow, threeddarkshadow) |
michael@0 | 547 | CSS_KEY(threedface, threedface) |
michael@0 | 548 | CSS_KEY(threedhighlight, threedhighlight) |
michael@0 | 549 | CSS_KEY(threedlightshadow, threedlightshadow) |
michael@0 | 550 | CSS_KEY(threedshadow, threedshadow) |
michael@0 | 551 | CSS_KEY(titling-caps, titling_caps) |
michael@0 | 552 | CSS_KEY(toggle, toggle) |
michael@0 | 553 | CSS_KEY(top, top) |
michael@0 | 554 | CSS_KEY(top-outside, top_outside) |
michael@0 | 555 | CSS_KEY(trad-chinese-formal, trad_chinese_formal) |
michael@0 | 556 | CSS_KEY(trad-chinese-informal, trad_chinese_informal) |
michael@0 | 557 | CSS_KEY(traditional, traditional) |
michael@0 | 558 | CSS_KEY(translate, translate) |
michael@0 | 559 | CSS_KEY(translate3d, translate3d) |
michael@0 | 560 | CSS_KEY(translatex, translatex) |
michael@0 | 561 | CSS_KEY(translatey, translatey) |
michael@0 | 562 | CSS_KEY(translatez, translatez) |
michael@0 | 563 | CSS_KEY(transparent, transparent) // for nsComputedDOMStyle only |
michael@0 | 564 | CSS_KEY(tri-state, tri_state) |
michael@0 | 565 | CSS_KEY(true, true) |
michael@0 | 566 | CSS_KEY(ultra-condensed, ultra_condensed) |
michael@0 | 567 | CSS_KEY(ultra-expanded, ultra_expanded) |
michael@0 | 568 | CSS_KEY(underline, underline) |
michael@0 | 569 | CSS_KEY(unicase, unicase) |
michael@0 | 570 | CSS_KEY(unset, unset) |
michael@0 | 571 | CSS_KEY(upper-alpha, upper_alpha) |
michael@0 | 572 | CSS_KEY(upper-latin, upper_latin) |
michael@0 | 573 | CSS_KEY(upper-roman, upper_roman) |
michael@0 | 574 | CSS_KEY(uppercase, uppercase) |
michael@0 | 575 | CSS_KEY(upright, upright) |
michael@0 | 576 | CSS_KEY(vertical, vertical) |
michael@0 | 577 | CSS_KEY(vertical-lr, vertical_lr) |
michael@0 | 578 | CSS_KEY(vertical-rl, vertical_rl) |
michael@0 | 579 | CSS_KEY(vertical-text, vertical_text) |
michael@0 | 580 | CSS_KEY(visible, visible) |
michael@0 | 581 | CSS_KEY(visiblefill, visiblefill) |
michael@0 | 582 | CSS_KEY(visiblepainted, visiblepainted) |
michael@0 | 583 | CSS_KEY(visiblestroke, visiblestroke) |
michael@0 | 584 | CSS_KEY(w-resize, w_resize) |
michael@0 | 585 | CSS_KEY(wait, wait) |
michael@0 | 586 | CSS_KEY(wavy, wavy) |
michael@0 | 587 | CSS_KEY(weight, weight) |
michael@0 | 588 | CSS_KEY(wider, wider) |
michael@0 | 589 | CSS_KEY(window, window) |
michael@0 | 590 | CSS_KEY(windowframe, windowframe) |
michael@0 | 591 | CSS_KEY(windowtext, windowtext) |
michael@0 | 592 | CSS_KEY(wrap, wrap) |
michael@0 | 593 | CSS_KEY(wrap-reverse, wrap_reverse) |
michael@0 | 594 | CSS_KEY(write-only, write_only) |
michael@0 | 595 | CSS_KEY(x-large, x_large) |
michael@0 | 596 | CSS_KEY(x-small, x_small) |
michael@0 | 597 | CSS_KEY(xx-large, xx_large) |
michael@0 | 598 | CSS_KEY(xx-small, xx_small) |
michael@0 | 599 | CSS_KEY(zoom-in, zoom_in) |
michael@0 | 600 | CSS_KEY(zoom-out, zoom_out) |
michael@0 | 601 | |
michael@0 | 602 | // Appearance keywords for widget styles |
michael@0 | 603 | CSS_KEY(radio, radio) |
michael@0 | 604 | CSS_KEY(checkbox, checkbox) |
michael@0 | 605 | CSS_KEY(button-bevel, button_bevel) |
michael@0 | 606 | CSS_KEY(toolbox, toolbox) |
michael@0 | 607 | CSS_KEY(toolbar, toolbar) |
michael@0 | 608 | CSS_KEY(toolbarbutton, toolbarbutton) |
michael@0 | 609 | CSS_KEY(toolbargripper, toolbargripper) |
michael@0 | 610 | CSS_KEY(dualbutton, dualbutton) |
michael@0 | 611 | CSS_KEY(toolbarbutton-dropdown, toolbarbutton_dropdown) |
michael@0 | 612 | CSS_KEY(button-arrow-up, button_arrow_up) |
michael@0 | 613 | CSS_KEY(button-arrow-down, button_arrow_down) |
michael@0 | 614 | CSS_KEY(button-arrow-next, button_arrow_next) |
michael@0 | 615 | CSS_KEY(button-arrow-previous, button_arrow_previous) |
michael@0 | 616 | CSS_KEY(separator, separator) |
michael@0 | 617 | CSS_KEY(splitter, splitter) |
michael@0 | 618 | CSS_KEY(statusbar, statusbar) |
michael@0 | 619 | CSS_KEY(statusbarpanel, statusbarpanel) |
michael@0 | 620 | CSS_KEY(resizerpanel, resizerpanel) |
michael@0 | 621 | CSS_KEY(resizer, resizer) |
michael@0 | 622 | CSS_KEY(listbox, listbox) |
michael@0 | 623 | CSS_KEY(listitem, listitem) |
michael@0 | 624 | CSS_KEY(number-input, number_input) |
michael@0 | 625 | CSS_KEY(treeview, treeview) |
michael@0 | 626 | CSS_KEY(treeitem, treeitem) |
michael@0 | 627 | CSS_KEY(treetwisty, treetwisty) |
michael@0 | 628 | CSS_KEY(treetwistyopen, treetwistyopen) |
michael@0 | 629 | CSS_KEY(treeline, treeline) |
michael@0 | 630 | CSS_KEY(treeheader, treeheader) |
michael@0 | 631 | CSS_KEY(treeheadercell, treeheadercell) |
michael@0 | 632 | CSS_KEY(treeheadersortarrow, treeheadersortarrow) |
michael@0 | 633 | CSS_KEY(progressbar, progressbar) |
michael@0 | 634 | CSS_KEY(progressbar-vertical, progressbar_vertical) |
michael@0 | 635 | CSS_KEY(progresschunk, progresschunk) |
michael@0 | 636 | CSS_KEY(progresschunk-vertical, progresschunk_vertical) |
michael@0 | 637 | CSS_KEY(tab, tab) |
michael@0 | 638 | CSS_KEY(tabpanels, tabpanels) |
michael@0 | 639 | CSS_KEY(tabpanel, tabpanel) |
michael@0 | 640 | CSS_KEY(tab-scroll-arrow-back, tab_scroll_arrow_back) |
michael@0 | 641 | CSS_KEY(tab-scroll-arrow-forward, tab_scroll_arrow_forward) |
michael@0 | 642 | CSS_KEY(tooltip, tooltip) |
michael@0 | 643 | CSS_KEY(spinner, spinner) |
michael@0 | 644 | CSS_KEY(spinner-upbutton, spinner_upbutton) |
michael@0 | 645 | CSS_KEY(spinner-downbutton, spinner_downbutton) |
michael@0 | 646 | CSS_KEY(spinner-textfield, spinner_textfield) |
michael@0 | 647 | CSS_KEY(scrollbarbutton-up, scrollbarbutton_up) |
michael@0 | 648 | CSS_KEY(scrollbarbutton-down, scrollbarbutton_down) |
michael@0 | 649 | CSS_KEY(scrollbarbutton-left, scrollbarbutton_left) |
michael@0 | 650 | CSS_KEY(scrollbarbutton-right, scrollbarbutton_right) |
michael@0 | 651 | CSS_KEY(scrollbartrack-horizontal, scrollbartrack_horizontal) |
michael@0 | 652 | CSS_KEY(scrollbartrack-vertical, scrollbartrack_vertical) |
michael@0 | 653 | CSS_KEY(scrollbarthumb-horizontal, scrollbarthumb_horizontal) |
michael@0 | 654 | CSS_KEY(scrollbarthumb-vertical, scrollbarthumb_vertical) |
michael@0 | 655 | CSS_KEY(sheet, sheet) |
michael@0 | 656 | CSS_KEY(textfield, textfield) |
michael@0 | 657 | CSS_KEY(textfield-multiline, textfield_multiline) |
michael@0 | 658 | CSS_KEY(caret, caret) |
michael@0 | 659 | CSS_KEY(searchfield, searchfield) |
michael@0 | 660 | CSS_KEY(menubar, menubar) |
michael@0 | 661 | CSS_KEY(menupopup, menupopup) |
michael@0 | 662 | CSS_KEY(menuitem, menuitem) |
michael@0 | 663 | CSS_KEY(checkmenuitem, checkmenuitem) |
michael@0 | 664 | CSS_KEY(radiomenuitem, radiomenuitem) |
michael@0 | 665 | CSS_KEY(menucheckbox, menucheckbox) |
michael@0 | 666 | CSS_KEY(menuradio, menuradio) |
michael@0 | 667 | CSS_KEY(menuseparator, menuseparator) |
michael@0 | 668 | CSS_KEY(menuarrow, menuarrow) |
michael@0 | 669 | CSS_KEY(menuimage, menuimage) |
michael@0 | 670 | CSS_KEY(menuitemtext, menuitemtext) |
michael@0 | 671 | CSS_KEY(menulist, menulist) |
michael@0 | 672 | CSS_KEY(menulist-button, menulist_button) |
michael@0 | 673 | CSS_KEY(menulist-text, menulist_text) |
michael@0 | 674 | CSS_KEY(menulist-textfield, menulist_textfield) |
michael@0 | 675 | CSS_KEY(meterbar, meterbar) |
michael@0 | 676 | CSS_KEY(meterchunk, meterchunk) |
michael@0 | 677 | CSS_KEY(range, range) |
michael@0 | 678 | CSS_KEY(range-thumb, range_thumb) |
michael@0 | 679 | CSS_KEY(sans-serif, sans_serif) |
michael@0 | 680 | CSS_KEY(sans-serif-bold-italic, sans_serif_bold_italic) |
michael@0 | 681 | CSS_KEY(sans-serif-italic, sans_serif_italic) |
michael@0 | 682 | CSS_KEY(scale-horizontal, scale_horizontal) |
michael@0 | 683 | CSS_KEY(scale-vertical, scale_vertical) |
michael@0 | 684 | CSS_KEY(scalethumb-horizontal, scalethumb_horizontal) |
michael@0 | 685 | CSS_KEY(scalethumb-vertical, scalethumb_vertical) |
michael@0 | 686 | CSS_KEY(scalethumbstart, scalethumbstart) |
michael@0 | 687 | CSS_KEY(scalethumbend, scalethumbend) |
michael@0 | 688 | CSS_KEY(scalethumbtick, scalethumbtick) |
michael@0 | 689 | CSS_KEY(groupbox, groupbox) |
michael@0 | 690 | CSS_KEY(checkbox-container, checkbox_container) |
michael@0 | 691 | CSS_KEY(radio-container, radio_container) |
michael@0 | 692 | CSS_KEY(checkbox-label, checkbox_label) |
michael@0 | 693 | CSS_KEY(radio-label, radio_label) |
michael@0 | 694 | CSS_KEY(button-focus, button_focus) |
michael@0 | 695 | CSS_KEY(-moz-win-media-toolbox, _moz_win_media_toolbox) |
michael@0 | 696 | CSS_KEY(-moz-win-communications-toolbox, _moz_win_communications_toolbox) |
michael@0 | 697 | CSS_KEY(-moz-win-browsertabbar-toolbox, _moz_win_browsertabbar_toolbox) |
michael@0 | 698 | CSS_KEY(-moz-win-mediatext, _moz_win_mediatext) |
michael@0 | 699 | CSS_KEY(-moz-win-communicationstext, _moz_win_communicationstext) |
michael@0 | 700 | CSS_KEY(-moz-win-glass, _moz_win_glass) |
michael@0 | 701 | CSS_KEY(-moz-win-borderless-glass, _moz_win_borderless_glass) |
michael@0 | 702 | CSS_KEY(-moz-window-titlebar, _moz_window_titlebar) |
michael@0 | 703 | CSS_KEY(-moz-window-titlebar-maximized, _moz_window_titlebar_maximized) |
michael@0 | 704 | CSS_KEY(-moz-window-frame-left, _moz_window_frame_left) |
michael@0 | 705 | CSS_KEY(-moz-window-frame-right, _moz_window_frame_right) |
michael@0 | 706 | CSS_KEY(-moz-window-frame-bottom, _moz_window_frame_bottom) |
michael@0 | 707 | CSS_KEY(-moz-window-button-close, _moz_window_button_close) |
michael@0 | 708 | CSS_KEY(-moz-window-button-minimize, _moz_window_button_minimize) |
michael@0 | 709 | CSS_KEY(-moz-window-button-maximize, _moz_window_button_maximize) |
michael@0 | 710 | CSS_KEY(-moz-window-button-restore, _moz_window_button_restore) |
michael@0 | 711 | CSS_KEY(-moz-window-button-box, _moz_window_button_box) |
michael@0 | 712 | CSS_KEY(-moz-window-button-box-maximized, _moz_window_button_box_maximized) |
michael@0 | 713 | CSS_KEY(-moz-mac-help-button, _moz_mac_help_button) |
michael@0 | 714 | CSS_KEY(-moz-mac-unified-toolbar, _moz_mac_unified_toolbar) |
michael@0 | 715 | CSS_KEY(-moz-win-exclude-glass, _moz_win_exclude_glass) |
michael@0 | 716 | CSS_KEY(alphabetic, alphabetic) |
michael@0 | 717 | CSS_KEY(bevel, bevel) |
michael@0 | 718 | CSS_KEY(butt, butt) |
michael@0 | 719 | CSS_KEY(central, central) |
michael@0 | 720 | CSS_KEY(crispedges, crispedges) |
michael@0 | 721 | //CSS_KEY(end, end) |
michael@0 | 722 | CSS_KEY(evenodd, evenodd) |
michael@0 | 723 | CSS_KEY(geometricprecision, geometricprecision) |
michael@0 | 724 | CSS_KEY(hanging, hanging) |
michael@0 | 725 | CSS_KEY(ideographic, ideographic) |
michael@0 | 726 | CSS_KEY(linearrgb, linearrgb) |
michael@0 | 727 | CSS_KEY(mathematical, mathematical) |
michael@0 | 728 | //CSS_KEY(middle, middle) |
michael@0 | 729 | CSS_KEY(miter, miter) |
michael@0 | 730 | CSS_KEY(no-change, no_change) |
michael@0 | 731 | CSS_KEY(non-scaling-stroke, non_scaling_stroke) |
michael@0 | 732 | CSS_KEY(nonzero, nonzero) |
michael@0 | 733 | CSS_KEY(optimizelegibility, optimizelegibility) |
michael@0 | 734 | CSS_KEY(optimizequality, optimizequality) |
michael@0 | 735 | CSS_KEY(optimizespeed, optimizespeed) |
michael@0 | 736 | CSS_KEY(reset-size, reset_size) |
michael@0 | 737 | //CSS_KEY(square, square) |
michael@0 | 738 | //CSS_KEY(start, start) |
michael@0 | 739 | CSS_KEY(srgb, srgb) |
michael@0 | 740 | CSS_KEY(text-after-edge, text_after_edge) |
michael@0 | 741 | CSS_KEY(text-before-edge, text_before_edge) |
michael@0 | 742 | CSS_KEY(use-script, use_script) |
michael@0 | 743 | CSS_KEY(-moz-crisp-edges, _moz_crisp_edges) |