Home | History | Annotate | Download | only in style

Lines Matching refs:inherited

107     , inherited(defaultStyle()->inherited)
134 inherited.init();
146 , inherited(o.inherited)
209 inherited = inheritParent->inherited;
254 && inherited == o.inherited
327 || inherited != other->inherited
336 && inherited.get() == other->inherited.get()
517 if (inherited->textAutosizingMultiplier != other.inherited->textAutosizingMultiplier)
520 if (inherited.get() != other.inherited.get()) {
521 if (inherited->line_height != other.inherited->line_height
522 || inherited->font != other.inherited->font
523 || inherited->horizontal_border_spacing != other.inherited->horizontal_border_spacing
524 || inherited->vertical_border_spacing != other.inherited->vertical_border_spacing)
689 if (inherited->color != other.inherited->color
956 Color RenderStyle::color() const { return inherited->color; }
957 Color RenderStyle::visitedLinkColor() const { return inherited->visitedLinkColor; }
958 void RenderStyle::setColor(const Color& v) { SET_VAR(inherited, color, v); }
959 void RenderStyle::setVisitedLinkColor(const Color& v) { SET_VAR(inherited, visitedLinkColor, v); }
961 short RenderStyle::horizontalBorderSpacing() const { return inherited->horizontal_border_spacing; }
962 short RenderStyle::verticalBorderSpacing() const { return inherited->vertical_border_spacing; }
963 void RenderStyle::setHorizontalBorderSpacing(short v) { SET_VAR(inherited, horizontal_border_spacing, v); }
964 void RenderStyle::setVerticalBorderSpacing(short v) { SET_VAR(inherited, vertical_border_spacing, v); }
1110 const Font& RenderStyle::font() const { return inherited->font; }
1111 const FontMetrics& RenderStyle::fontMetrics() const { return inherited->font.fontMetrics(); }
1112 const FontDescription& RenderStyle::fontDescription() const { return inherited->font.fontDescription(); }
1150 if (inherited->font.fontDescription() != v) {
1151 inherited.access()->font = Font(v);
1157 const Length& RenderStyle::specifiedLineHeight() const { return inherited->line_height; }
1160 const Length& lh = inherited->line_height;
1172 void RenderStyle::setLineHeight(const Length& specifiedLineHeight) { SET_VAR(inherited, line_height, specifiedLineHeight); }