Home | History | Annotate | Download | only in style

Lines Matching refs:inherited_flags

205     } inherited_flags;
261 inherited_flags._empty_cells = initialEmptyCells();
262 inherited_flags._caption_side = initialCaptionSide();
263 inherited_flags._list_style_type = initialListStyleType();
264 inherited_flags._list_style_position = initialListStylePosition();
265 inherited_flags._visibility = initialVisibility();
266 inherited_flags._text_align = initialTextAlign();
267 inherited_flags._text_transform = initialTextTransform();
268 inherited_flags._text_decorations = initialTextDecoration();
269 inherited_flags._cursor_style = initialCursor();
270 inherited_flags._direction = initialDirection();
271 inherited_flags._border_collapse = initialBorderCollapse();
272 inherited_flags._white_space = initialWhiteSpace();
273 inherited_flags._visuallyOrdered = initialVisuallyOrdered();
274 inherited_flags._htmlHacks=false;
275 inherited_flags._box_direction = initialBoxDirection();
276 inherited_flags._force_backgrounds_to_white = false;
277 inherited_flags._pointerEvents = initialPointerEvents();
348 bool visuallyOrdered() const { return inherited_flags._visuallyOrdered; }
349 void setVisuallyOrdered(bool b) { inherited_flags._visuallyOrdered = b; }
427 EVisibility visibility() const { return static_cast<EVisibility>(inherited_flags._visibility); }
449 ETextAlign textAlign() const { return static_cast<ETextAlign>(inherited_flags._text_align); }
450 ETextTransform textTransform() const { return static_cast<ETextTransform>(inherited_flags._text_transform); }
451 int textDecorationsInEffect() const { return inherited_flags._text_decorations; }
459 TextDirection direction() const { return static_cast<TextDirection>(inherited_flags._direction); }
475 EWhiteSpace whiteSpace() const { return static_cast<EWhiteSpace>(inherited_flags._white_space); }
561 bool borderCollapse() const { return inherited_flags._border_collapse; }
564 EEmptyCell emptyCells() const { return static_cast<EEmptyCell>(inherited_flags._empty_cells); }
565 ECaptionSide captionSide() const { return static_cast<ECaptionSide>(inherited_flags._caption_side); }
570 EListStyleType listStyleType() const { return static_cast<EListStyleType>(inherited_flags._list_style_type); }
572 EListStylePosition listStylePosition() const { return static_cast<EListStylePosition>(inherited_flags._list_style_position); }
585 ECursor cursor() const { return static_cast<ECursor>(inherited_flags._cursor_style); }
615 EBoxDirection boxDirection() const { return static_cast<EBoxDirection>(inherited_flags._box_direction); }
679 EPointerEvents pointerEvents() const { return static_cast<EPointerEvents>(inherited_flags._pointerEvents); }
815 void setVisibility(EVisibility v) { inherited_flags._visibility = v; }
845 void setTextAlign(ETextAlign v) { inherited_flags._text_align = v; }
846 void setTextTransform(ETextTransform v) { inherited_flags._text_transform = v; }
847 void addToTextDecorationsInEffect(int v) { inherited_flags._text_decorations |= v; }
848 void setTextDecorationsInEffect(int v) { inherited_flags._text_decorations = v; }
850 void setDirection(TextDirection v) { inherited_flags._direction = v; }
855 void setWhiteSpace(EWhiteSpace v) { inherited_flags._white_space = v; }
887 void setBorderCollapse(bool collapse) { inherited_flags._border_collapse = collapse; }
890 void setEmptyCells(EEmptyCell v) { inherited_flags._empty_cells = v; }
891 void setCaptionSide(ECaptionSide v) { inherited_flags._caption_side = v; }
896 void setListStyleType(EListStyleType v) { inherited_flags._list_style_type = v; }
898 void setListStylePosition(EListStylePosition v) { inherited_flags._list_style_position = v; }
913 void setCursor(ECursor c) { inherited_flags._cursor_style = c; }
918 bool forceBackgroundsToWhite() const { return inherited_flags._force_backgrounds_to_white; }
919 void setForceBackgroundsToWhite(bool b=true) { inherited_flags._force_backgrounds_to_white = b; }
921 bool htmlHacks() const { return inherited_flags._htmlHacks; }
922 void setHtmlHacks(bool b=true) { inherited_flags._htmlHacks = b; }
951 void setBoxDirection(EBoxDirection d) { inherited_flags._box_direction = d; }
1000 void setPointerEvents(EPointerEvents p) { inherited_flags._pointerEvents = p; }