| Index: third_party/WebKit/Source/core/style/ComputedStyle.h
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| index aff1dfd3fb8547857b1376a596b62b3b42da6687..340e8b6f3fd66282fca8d5435e605ded708ecb46 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
|
| @@ -1942,13 +1942,18 @@
|
| QuotesData* quotes() const { return m_rareInheritedData->quotes.get(); }
|
| void setQuotes(PassRefPtr<QuotesData>);
|
|
|
| - // line-height-step
|
| - static uint8_t initialLineHeightStep() { return 0; }
|
| - uint8_t lineHeightStep() const {
|
| - return m_rareInheritedData->m_lineHeightStep;
|
| - }
|
| - void setLineHeightStep(uint8_t unit) {
|
| - SET_VAR(m_rareInheritedData, m_lineHeightStep, unit);
|
| + // snap-height
|
| + uint8_t snapHeightPosition() const {
|
| + return m_rareInheritedData->m_snapHeightPosition;
|
| + }
|
| + uint8_t snapHeightUnit() const {
|
| + return m_rareInheritedData->m_snapHeightUnit;
|
| + }
|
| + void setSnapHeightPosition(uint8_t position) {
|
| + SET_VAR(m_rareInheritedData, m_snapHeightPosition, position);
|
| + }
|
| + void setSnapHeightUnit(uint8_t unit) {
|
| + SET_VAR(m_rareInheritedData, m_snapHeightUnit, unit);
|
| }
|
|
|
| // speak
|
|
|