Home | History | Annotate | Download | only in style

Lines Matching refs:rareInheritedData

143     DataRef<StyleRareInheritedData> rareInheritedData;
562 const Length& textIndent() const { return rareInheritedData->indent; }
563 TextIndentLine textIndentLine() const { return static_cast<TextIndentLine>(rareInheritedData->m_textIndentLine); }
564 TextIndentType textIndentType() const { return static_cast<TextIndentType>(rareInheritedData->m_textIndentType); }
566 TextAlignLast textAlignLast() const { return static_cast<TextAlignLast>(rareInheritedData->m_textAlignLast); }
567 TextJustify textJustify() const { return static_cast<TextJustify>(rareInheritedData->m_textJustify); }
572 TextUnderlinePosition textUnderlinePosition() const { return static_cast<TextUnderlinePosition>(rareInheritedData->m_textUnderlinePosition); }
578 float effectiveZoom() const { return rareInheritedData->m_effectiveZoom; }
710 CursorList* cursors() const { return rareInheritedData->cursorData.get(); }
715 short widows() const { return rareInheritedData->widows; }
716 short orphans() const { return rareInheritedData->orphans; }
717 bool hasAutoWidows() const { return rareInheritedData->m_hasAutoWidows; }
718 bool hasAutoOrphans() const { return rareInheritedData->m_hasAutoOrphans; }
732 ShadowList* textShadow() const { return rareInheritedData->textShadow.get(); }
739 float textStrokeWidth() const { return rareInheritedData->textStrokeWidth; }
823 EUserModify userModify() const { return static_cast<EUserModify>(rareInheritedData->userModify); }
825 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInheritedData->userSelect); }
829 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedData->wordBreak); }
830 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareInheritedData->overflowWrap); }
831 LineBreak lineBreak() const { return static_cast<LineBreak>(rareInheritedData->lineBreak); }
832 const AtomicString& highlight() const { return rareInheritedData->highlight; }
833 const AtomicString& hyphenationString() const { return rareInheritedData->hyphenationString; }
834 const AtomicString& locale() const { return rareInheritedData->locale; }
836 EResize resize() const { return static_cast<EResize>(rareInheritedData->resize); }
869 TextEmphasisFill textEmphasisFill() const { return static_cast<TextEmphasisFill>(rareInheritedData->textEmphasisFill); }
871 const AtomicString& textEmphasisCustomMark() const { return rareInheritedData->textEmphasisCustomMark; }
872 TextEmphasisPosition textEmphasisPosition() const { return static_cast<TextEmphasisPosition>(rareInheritedData->textEmphasisPosition); }
875 RubyPosition rubyPosition() const { return static_cast<RubyPosition>(rareInheritedData->m_rubyPosition); }
877 TextOrientation textOrientation() const { return static_cast<TextOrientation>(rareInheritedData->m_textOrientation); }
895 unsigned tabSize() const { return rareInheritedData->m_tabSize; }
931 LineBoxContain lineBoxContain() const { return rareInheritedData->m_lineBoxContain; }
933 Color tapHighlightColor() const { return rareInheritedData->tapHighlightColor; }
934 ETextSecurity textSecurity() const { return static_cast<ETextSecurity>(rareInheritedData->textSecurity); }
941 EImageRendering imageRendering() const { return static_cast<EImageRendering>(rareInheritedData->m_imageRendering); }
943 ESpeak speak() const { return static_cast<ESpeak>(rareInheritedData->speak); }
960 TouchActionDelay touchActionDelay() const { return static_cast<TouchActionDelay>(rareInheritedData->m_touchActionDelay); }
968 bool subtreeWillChangeContents() const { return rareInheritedData->m_subtreeWillChangeContents; }
1126 void setTextIndent(const Length& v) { SET_VAR(rareInheritedData, indent, v); }
1127 void setTextIndentLine(TextIndentLine v) { SET_VAR(rareInheritedData, m_textIndentLine, v); }
1128 void setTextIndentType(TextIndentType v) { SET_VAR(rareInheritedData, m_textIndentType, v); }
1130 void setTextAlignLast(TextAlignLast v) { SET_VAR(rareInheritedData, m_textAlignLast, v); }
1131 void setTextJustify(TextJustify v) { SET_VAR(rareInheritedData, m_textJustify, v); }
1136 void setTextUnderlinePosition(TextUnderlinePosition v) { SET_VAR(rareInheritedData, m_textUnderlinePosition, v); }
1143 void setImageRendering(EImageRendering v) { SET_VAR(rareInheritedData, m_imageRendering, v); }
1235 void setHasAutoWidows() { SET_VAR(rareInheritedData, m_hasAutoWidows, true); SET_VAR(rareInheritedData, widows, initialWidows()); }
1236 void setWidows(short w) { SET_VAR(rareInheritedData, m_hasAutoWidows, false); SET_VAR(rareInheritedData, widows, w); }
1238 void setHasAutoOrphans() { SET_VAR(rareInheritedData, m_hasAutoOrphans, true); SET_VAR(rareInheritedData, orphans, initialOrphans()); }
1239 void setOrphans(short o) { SET_VAR(rareInheritedData, m_hasAutoOrphans, false); SET_VAR(rareInheritedData, orphans, o); }
1249 void setTextStrokeColor(const StyleColor& c) { SET_VAR_WITH_SETTER(rareInheritedData, textStrokeColor, setTextStrokeColor, c); }
1250 void setTextStrokeWidth(float w) { SET_VAR(rareInheritedData, textStrokeWidth, w); }
1251 void setTextFillColor(const StyleColor& c) { SET_VAR_WITH_SETTER(rareInheritedData, textFillColor, setTextFillColor, c); }
1309 void setUserModify(EUserModify u) { SET_VAR(rareInheritedData, userModify, u); }
1311 void setUserSelect(EUserSelect s) { SET_VAR(rareInheritedData, userSelect, s); }
1315 void setWordBreak(EWordBreak b) { SET_VAR(rareInheritedData, wordBreak, b); }
1316 void setOverflowWrap(EOverflowWrap b) { SET_VAR(rareInheritedData, overflowWrap, b); }
1317 void setLineBreak(LineBreak b) { SET_VAR(rareInheritedData, lineBreak, b); }
1318 void setHighlight(const AtomicString& h) { SET_VAR(rareInheritedData, highlight, h); }
1319 void setHyphens(Hyphens h) { SET_VAR(rareInheritedData, hyphens, h); }
1320 void setHyphenationString(const AtomicString& h) { SET_VAR(rareInheritedData, hyphenationString, h); }
1321 void setLocale(const AtomicString& locale) { SET_VAR(rareInheritedData, locale, locale); }
1323 void setResize(EResize r) { SET_VAR(rareInheritedData, resize, r); }
1346 void setSpeak(ESpeak s) { SET_VAR(rareInheritedData, speak, s); }
1349 void setTextEmphasisColor(const StyleColor& c) { SET_VAR_WITH_SETTER(rareInheritedData, textEmphasisColor, setTextEmphasisColor, c); }
1350 void setTextEmphasisFill(TextEmphasisFill fill) { SET_VAR(rareInheritedData, textEmphasisFill, fill); }
1351 void setTextEmphasisMark(TextEmphasisMark mark) { SET_VAR(rareInheritedData, textEmphasisMark, mark); }
1352 void setTextEmphasisCustomMark(const AtomicString& mark) { SET_VAR(rareInheritedData, textEmphasisCustomMark, mark); }
1353 void setTextEmphasisPosition(TextEmphasisPosition position) { SET_VAR(rareInheritedData, textEmphasisPosition, position); }
1359 void setRubyPosition(RubyPosition position) { SET_VAR(rareInheritedData, m_rubyPosition, position); }
1363 void setTabSize(unsigned size) { SET_VAR(rareInheritedData, m_tabSize, size); }
1400 void setLineBoxContain(LineBoxContain c) { SET_VAR(rareInheritedData, m_lineBoxContain, c); }
1402 void setTapHighlightColor(const Color& c) { SET_VAR(rareInheritedData, tapHighlightColor, c); }
1403 void setTextSecurity(ETextSecurity aTextSecurity) { SET_VAR(rareInheritedData, textSecurity, aTextSecurity); }
1405 void setTouchActionDelay(TouchActionDelay t) { SET_VAR(rareInheritedData, m_touchActionDelay, t); }
1412 void setSubtreeWillChangeContents(bool b) { SET_VAR(rareInheritedData, m_subtreeWillChangeContents, b); }
1495 QuotesData* quotes() const { return rareInheritedData->quotes.get(); }
1740 void setVisitedLinkTextEmphasisColor(const StyleColor& v) { SET_VAR_WITH_SETTER(rareInheritedData, visitedLinkTextEmphasisColor, setVisitedLinkTextEmphasisColor, v); }
1741 void setVisitedLinkTextFillColor(const StyleColor& v) { SET_VAR_WITH_SETTER(rareInheritedData, visitedLinkTextFillColor, setVisitedLinkTextFillColor, v); }
1742 void setVisitedLinkTextStrokeColor(const StyleColor& v) { SET_VAR_WITH_SETTER(rareInheritedData, visitedLinkTextStrokeColor, setVisitedLinkTextStrokeColor, v); }
1788 StyleColor textEmphasisColor() const { return rareInheritedData->textEmphasisColor(); }
1789 StyleColor textFillColor() const { return rareInheritedData->textFillColor(); }
1790 StyleColor textStrokeColor() const { return rareInheritedData->textStrokeColor(); }
1801 rareInheritedData->visitedLinkTextEmphasisColor(); }
1802 StyleColor visitedLinkTextFillColor() const { return rareInheritedData->visitedLinkTextFillColor(); }
1803 StyleColor visitedLinkTextStrokeColor() const { return rareInheritedData->visitedLinkTextStrokeColor(); }
1886 if (compareEqual(rareInheritedData->m_effectiveZoom, f))
1888 rareInheritedData.access()->m_effectiveZoom = f;
1903 if (compareEqual(rareInheritedData->m_textOrientation, textOrientation))
1906 rareInheritedData.access()->m_textOrientation = textOrientation;