| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 Inches, | 80 Inches, |
| 81 Points, | 81 Points, |
| 82 Picas, | 82 Picas, |
| 83 ViewportWidth, | 83 ViewportWidth, |
| 84 ViewportHeight, | 84 ViewportHeight, |
| 85 ViewportMin, | 85 ViewportMin, |
| 86 ViewportMax, | 86 ViewportMax, |
| 87 Rems, | 87 Rems, |
| 88 Chs, | 88 Chs, |
| 89 UserUnits, // The SVG term for unitless lengths | 89 UserUnits, // The SVG term for unitless lengths |
| 90 // Angle units | 90 // Angle units |
| 91 Degrees, | 91 Degrees, |
| 92 Radians, | 92 Radians, |
| 93 Gradians, | 93 Gradians, |
| 94 Turns, | 94 Turns, |
| 95 // Time units | 95 // Time units |
| 96 Milliseconds, | 96 Milliseconds, |
| 97 Seconds, | 97 Seconds, |
| 98 Hertz, | 98 Hertz, |
| 99 Kilohertz, | 99 Kilohertz, |
| 100 // Resolution | 100 // Resolution |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 } m_value; | 312 } m_value; |
| 313 }; | 313 }; |
| 314 | 314 |
| 315 using CSSLengthArray = CSSPrimitiveValue::CSSLengthArray; | 315 using CSSLengthArray = CSSPrimitiveValue::CSSLengthArray; |
| 316 | 316 |
| 317 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue()); | 317 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPrimitiveValue, isPrimitiveValue()); |
| 318 | 318 |
| 319 } // namespace blink | 319 } // namespace blink |
| 320 | 320 |
| 321 #endif // CSSPrimitiveValue_h | 321 #endif // CSSPrimitiveValue_h |
| OLD | NEW |