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, 2007, 2008, 2012 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv
ed. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 case Intrinsic: | 276 case Intrinsic: |
277 m_primitiveUnitType = CSS_VALUE_ID; | 277 m_primitiveUnitType = CSS_VALUE_ID; |
278 m_value.valueID = CSSValueIntrinsic; | 278 m_value.valueID = CSSValueIntrinsic; |
279 break; | 279 break; |
280 case MinIntrinsic: | 280 case MinIntrinsic: |
281 m_primitiveUnitType = CSS_VALUE_ID; | 281 m_primitiveUnitType = CSS_VALUE_ID; |
282 m_value.valueID = CSSValueMinIntrinsic; | 282 m_value.valueID = CSSValueMinIntrinsic; |
283 break; | 283 break; |
284 case MinContent: | 284 case MinContent: |
285 m_primitiveUnitType = CSS_VALUE_ID; | 285 m_primitiveUnitType = CSS_VALUE_ID; |
286 m_value.valueID = CSSValueWebkitMinContent; | 286 m_value.valueID = CSSValueMinContent; |
287 break; | 287 break; |
288 case MaxContent: | 288 case MaxContent: |
289 m_primitiveUnitType = CSS_VALUE_ID; | 289 m_primitiveUnitType = CSS_VALUE_ID; |
290 m_value.valueID = CSSValueWebkitMaxContent; | 290 m_value.valueID = CSSValueMaxContent; |
291 break; | 291 break; |
292 case FillAvailable: | 292 case FillAvailable: |
293 m_primitiveUnitType = CSS_VALUE_ID; | 293 m_primitiveUnitType = CSS_VALUE_ID; |
294 m_value.valueID = CSSValueWebkitFillAvailable; | 294 m_value.valueID = CSSValueWebkitFillAvailable; |
295 break; | 295 break; |
296 case FitContent: | 296 case FitContent: |
297 m_primitiveUnitType = CSS_VALUE_ID; | 297 m_primitiveUnitType = CSS_VALUE_ID; |
298 m_value.valueID = CSSValueWebkitFitContent; | 298 m_value.valueID = CSSValueWebkitFitContent; |
299 break; | 299 break; |
300 case Percent: | 300 case Percent: |
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1321 break; | 1321 break; |
1322 case CSS_CALC: | 1322 case CSS_CALC: |
1323 info.addMember(m_value.calc, "value.calc"); | 1323 info.addMember(m_value.calc, "value.calc"); |
1324 break; | 1324 break; |
1325 default: | 1325 default: |
1326 break; | 1326 break; |
1327 } | 1327 } |
1328 } | 1328 } |
1329 | 1329 |
1330 } // namespace WebCore | 1330 } // namespace WebCore |
OLD | NEW |