Chromium Code Reviews| 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 e8cfa48f05318a61df84761b8b96387380eef664..51d02a69db2e64b54ac29681403408f7ce465060 100644 |
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
| @@ -633,7 +633,7 @@ public: |
| const Length& specifiedLineHeight() const; |
| Length lineHeight() const; |
| - int computedLineHeight() const; |
| + float computedLineHeight() const; |
|
Timothy Loh
2016/04/11 03:32:16
Why is this changing?
nainar
2016/04/11 04:42:15
If I retain it as int we lose out on information.
Timothy Loh
2016/04/11 04:44:43
Doesn't this mean we're changing layout behaviour
|
| EWhiteSpace whiteSpace() const { return static_cast<EWhiteSpace>(inherited_flags._white_space); } |
| static bool autoWrap(EWhiteSpace ws) |