OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CSSLengthData_h |
| 6 #define CSSLengthData_h |
| 7 |
| 8 namespace WebCore { |
| 9 class CSSLengthData { |
| 10 public: |
| 11 virtual ~CSSLengthData() { } |
| 12 virtual float zoom() const = 0; |
| 13 virtual bool computingFontSize() const = 0; |
| 14 virtual double fontSpecifiedSize() const = 0; |
| 15 virtual double fontComputedSize() const = 0; |
| 16 virtual double rootFontSpecifiedSize() const = 0; |
| 17 virtual double rootFontComputedSize() const = 0; |
| 18 virtual bool hasXHeight() const = 0; |
| 19 virtual double xHeight() const = 0; |
| 20 virtual double zeroWidth() const = 0; |
| 21 virtual bool hasRoot() const = 0; |
| 22 |
| 23 virtual double viewportWidthPercent() const = 0; |
| 24 virtual double viewportHeightPercent() const = 0; |
| 25 virtual double viewportMinPercent() const = 0; |
| 26 virtual double viewportMaxPercent() const = 0; |
| 27 }; |
| 28 |
| 29 } // namespace |
| 30 |
| 31 #endif // CSSLengthData_h |
| 32 |
OLD | NEW |