Home | History | Annotate | Download | only in style

Lines Matching refs:inherited

138     // non-inherited attributes
145 // inherited attributes
147 DataRef<StyleInheritedData> inherited;
199 // non CSS2 inherited
443 const Font& font() const { return inherited->font; }
444 const FontDescription& fontDescription() const { return inherited->font.fontDescription(); }
445 int fontSize() const { return inherited->font.pixelSize(); }
447 const Color& color() const { return inherited->color; }
448 Length textIndent() const { return inherited->indent; }
453 int wordSpacing() const { return inherited->font.wordSpacing(); }
454 int letterSpacing() const { return inherited->font.letterSpacing(); }
457 float effectiveZoom() const { return inherited->m_effectiveZoom; }
460 Length lineHeight() const { return inherited->line_height; }
562 short horizontalBorderSpacing() const { return inherited->horizontal_border_spacing; }
563 short verticalBorderSpacing() const { return inherited->vertical_border_spacing; }
571 StyleImage* listStyleImage() const { return inherited->list_style_image.get(); }
587 CursorList* cursors() const { return inherited->cursorData.get(); }
589 short widows() const { return inherited->widows; }
590 short orphans() const { return inherited->orphans; }
833 if (inherited->font.fontDescription() != v) {
834 inherited.access()->font = Font(v, inherited->font.letterSpacing(), inherited->font.wordSpacing());
843 void setColor(const Color& v) { SET_VAR(inherited, color, v) }
844 void setTextIndent(Length v) { SET_VAR(inherited, indent, v) }
851 void setLineHeight(Length v) { SET_VAR(inherited, line_height, v) }
853 void setEffectiveZoom(float f) { SET_VAR(inherited, m_effectiveZoom, f) }
857 void setWordSpacing(int v) { inherited.access()->font.setWordSpacing(v); }
858 void setLetterSpacing(int v) { inherited.access()->font.setLetterSpacing(v); }
888 void setHorizontalBorderSpacing(short v) { SET_VAR(inherited, horizontal_border_spacing, v) }
889 void setVerticalBorderSpacing(short v) { SET_VAR(inherited, vertical_border_spacing, v) }
897 void setListStyleImage(StyleImage* v) { if (inherited->list_style_image != v) inherited.access()->list_style_image = v; }
929 void setWidows(short w) { SET_VAR(inherited, widows, w); }
930 void setOrphans(short o) { SET_VAR(inherited, orphans, o); }