OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 4 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. | 6 * Copyright (C) 2011 Sencha, Inc. All rights reserved. |
7 * Copyright (C) 2015 Google Inc. All rights reserved. | 7 * Copyright (C) 2015 Google Inc. All rights reserved. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Lesser General Public | 10 * modify it under the terms of the GNU Lesser General Public |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 inline static CSSPrimitiveValue* zoomAdjustedNumberValue(double value, const Com
putedStyle& style) | 81 inline static CSSPrimitiveValue* zoomAdjustedNumberValue(double value, const Com
putedStyle& style) |
82 { | 82 { |
83 return CSSPrimitiveValue::create(value / style.effectiveZoom(), CSSPrimitive
Value::UnitType::Number); | 83 return CSSPrimitiveValue::create(value / style.effectiveZoom(), CSSPrimitive
Value::UnitType::Number); |
84 } | 84 } |
85 | 85 |
86 static CSSPrimitiveValue* zoomAdjustedPixelValueForLength(const Length& length,
const ComputedStyle& style) | 86 static CSSPrimitiveValue* zoomAdjustedPixelValueForLength(const Length& length,
const ComputedStyle& style) |
87 { | 87 { |
88 if (length.isFixed()) | 88 if (length.isFixed()) |
89 return zoomAdjustedPixelValue(length.value(), style); | 89 return zoomAdjustedPixelValue(length.value(), style); |
90 return CSSPrimitiveValue::create(length, style.effectiveZoom()); | 90 return CSSPrimitiveValue::create(length, style); |
91 } | 91 } |
92 | 92 |
93 static CSSPrimitiveValue* pixelValueForUnzoomedLength(const UnzoomedLength& unzo
omedLength, const ComputedStyle& style) | 93 static CSSPrimitiveValue* pixelValueForUnzoomedLength(const UnzoomedLength& unzo
omedLength, const ComputedStyle& style) |
94 { | 94 { |
95 const Length& length = unzoomedLength.length(); | 95 const Length& length = unzoomedLength.length(); |
96 if (length.isFixed()) | 96 if (length.isFixed()) |
97 return CSSPrimitiveValue::create(length.value(), CSSPrimitiveValue::Unit
Type::Pixels); | 97 return CSSPrimitiveValue::create(length.value(), CSSPrimitiveValue::Unit
Type::Pixels); |
98 return CSSPrimitiveValue::create(length, style.effectiveZoom()); | 98 return CSSPrimitiveValue::create(length, style); |
99 } | 99 } |
100 | 100 |
101 static CSSValueList* createPositionListForLayer(CSSPropertyID propertyID, const
FillLayer& layer, const ComputedStyle& style) | 101 static CSSValueList* createPositionListForLayer(CSSPropertyID propertyID, const
FillLayer& layer, const ComputedStyle& style) |
102 { | 102 { |
103 CSSValueList* positionList = CSSValueList::createSpaceSeparated(); | 103 CSSValueList* positionList = CSSValueList::createSpaceSeparated(); |
104 if (layer.isBackgroundXOriginSet()) { | 104 if (layer.isBackgroundXOriginSet()) { |
105 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition ||
propertyID == CSSPropertyWebkitMaskPosition); | 105 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition ||
propertyID == CSSPropertyWebkitMaskPosition); |
106 positionList->append(*CSSPrimitiveValue::create(layer.backgroundXOrigin(
))); | 106 positionList->append(*CSSPrimitiveValue::create(layer.backgroundXOrigin(
))); |
107 } | 107 } |
108 positionList->append(*zoomAdjustedPixelValueForLength(layer.xPosition(), sty
le)); | 108 positionList->append(*zoomAdjustedPixelValueForLength(layer.xPosition(), sty
le)); |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 left = CSSPrimitiveValue::create(image.imageSlices().left().
value(), CSSPrimitiveValue::UnitType::Percentage); | 306 left = CSSPrimitiveValue::create(image.imageSlices().left().
value(), CSSPrimitiveValue::UnitType::Percentage); |
307 else | 307 else |
308 left = CSSPrimitiveValue::create(image.imageSlices().left().
value(), CSSPrimitiveValue::UnitType::Number); | 308 left = CSSPrimitiveValue::create(image.imageSlices().left().
value(), CSSPrimitiveValue::UnitType::Number); |
309 } | 309 } |
310 } | 310 } |
311 } | 311 } |
312 | 312 |
313 return CSSBorderImageSliceValue::create(CSSQuadValue::create(top, right, bot
tom, left, CSSQuadValue::SerializeAsQuad), image.fill()); | 313 return CSSBorderImageSliceValue::create(CSSQuadValue::create(top, right, bot
tom, left, CSSQuadValue::SerializeAsQuad), image.fill()); |
314 } | 314 } |
315 | 315 |
316 static CSSPrimitiveValue* valueForBorderImageLength(const BorderImageLength& bor
derImageLength, const ComputedStyle& style) | |
317 { | |
318 if (borderImageLength.isNumber()) | |
319 return CSSPrimitiveValue::create(borderImageLength.number(), CSSPrimitiv
eValue::UnitType::Number); | |
320 return CSSPrimitiveValue::create(borderImageLength.length(), style.effective
Zoom()); | |
321 } | |
322 | |
323 static CSSQuadValue* valueForNinePieceImageQuad(const BorderImageLengthBox& box,
const ComputedStyle& style) | 316 static CSSQuadValue* valueForNinePieceImageQuad(const BorderImageLengthBox& box,
const ComputedStyle& style) |
324 { | 317 { |
325 // Create the slices. | 318 // Create the slices. |
326 CSSPrimitiveValue* top = nullptr; | 319 CSSPrimitiveValue* top = nullptr; |
327 CSSPrimitiveValue* right = nullptr; | 320 CSSPrimitiveValue* right = nullptr; |
328 CSSPrimitiveValue* bottom = nullptr; | 321 CSSPrimitiveValue* bottom = nullptr; |
329 CSSPrimitiveValue* left = nullptr; | 322 CSSPrimitiveValue* left = nullptr; |
330 | 323 |
331 top = valueForBorderImageLength(box.top(), style); | 324 if (box.top().isNumber()) |
| 325 top = CSSPrimitiveValue::create(box.top().number(), CSSPrimitiveValue::U
nitType::Number); |
| 326 else |
| 327 top = CSSPrimitiveValue::create(box.top().length(), style); |
332 | 328 |
333 if (box.right() == box.top() && box.bottom() == box.top() && box.left() == b
ox.top()) { | 329 if (box.right() == box.top() && box.bottom() == box.top() && box.left() == b
ox.top()) { |
334 right = top; | 330 right = top; |
335 bottom = top; | 331 bottom = top; |
336 left = top; | 332 left = top; |
337 } else { | 333 } else { |
338 right = valueForBorderImageLength(box.right(), style); | 334 if (box.right().isNumber()) |
| 335 right = CSSPrimitiveValue::create(box.right().number(), CSSPrimitive
Value::UnitType::Number); |
| 336 else |
| 337 right = CSSPrimitiveValue::create(box.right().length(), style); |
339 | 338 |
340 if (box.bottom() == box.top() && box.right() == box.left()) { | 339 if (box.bottom() == box.top() && box.right() == box.left()) { |
341 bottom = top; | 340 bottom = top; |
342 left = right; | 341 left = right; |
343 } else { | 342 } else { |
344 bottom = valueForBorderImageLength(box.bottom(), style); | 343 if (box.bottom().isNumber()) |
| 344 bottom = CSSPrimitiveValue::create(box.bottom().number(), CSSPri
mitiveValue::UnitType::Number); |
| 345 else |
| 346 bottom = CSSPrimitiveValue::create(box.bottom().length(), style)
; |
345 | 347 |
346 if (box.left() == box.right()) | 348 if (box.left() == box.right()) { |
347 left = right; | 349 left = right; |
348 else | 350 } else { |
349 left = valueForBorderImageLength(box.left(), style); | 351 if (box.left().isNumber()) |
| 352 left = CSSPrimitiveValue::create(box.left().number(), CSSPri
mitiveValue::UnitType::Number); |
| 353 else |
| 354 left = CSSPrimitiveValue::create(box.left().length(), style)
; |
| 355 } |
350 } | 356 } |
351 } | 357 } |
| 358 |
352 return CSSQuadValue::create(top, right, bottom, left, CSSQuadValue::Serializ
eAsQuad); | 359 return CSSQuadValue::create(top, right, bottom, left, CSSQuadValue::Serializ
eAsQuad); |
353 } | 360 } |
354 | 361 |
355 static CSSValueID valueForRepeatRule(int rule) | 362 static CSSValueID valueForRepeatRule(int rule) |
356 { | 363 { |
357 switch (rule) { | 364 switch (rule) { |
358 case RepeatImageRule: | 365 case RepeatImageRule: |
359 return CSSValueRepeat; | 366 return CSSValueRepeat; |
360 case RoundImageRule: | 367 case RoundImageRule: |
361 return CSSValueRound; | 368 return CSSValueRound; |
(...skipping 2283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2645 return valueForCounterDirectives(style, propertyID); | 2652 return valueForCounterDirectives(style, propertyID); |
2646 case CSSPropertyClipPath: | 2653 case CSSPropertyClipPath: |
2647 if (ClipPathOperation* operation = style.clipPath()) { | 2654 if (ClipPathOperation* operation = style.clipPath()) { |
2648 if (operation->type() == ClipPathOperation::SHAPE) | 2655 if (operation->type() == ClipPathOperation::SHAPE) |
2649 return valueForBasicShape(style, toShapeClipPathOperation(operat
ion)->basicShape()); | 2656 return valueForBasicShape(style, toShapeClipPathOperation(operat
ion)->basicShape()); |
2650 if (operation->type() == ClipPathOperation::REFERENCE) | 2657 if (operation->type() == ClipPathOperation::REFERENCE) |
2651 return CSSURIValue::create(toReferenceClipPathOperation(operatio
n)->url()); | 2658 return CSSURIValue::create(toReferenceClipPathOperation(operatio
n)->url()); |
2652 } | 2659 } |
2653 return CSSPrimitiveValue::createIdentifier(CSSValueNone); | 2660 return CSSPrimitiveValue::createIdentifier(CSSValueNone); |
2654 case CSSPropertyShapeMargin: | 2661 case CSSPropertyShapeMargin: |
2655 return CSSPrimitiveValue::create(style.shapeMargin(), style.effectiveZoo
m()); | 2662 return CSSPrimitiveValue::create(style.shapeMargin(), style); |
2656 case CSSPropertyShapeImageThreshold: | 2663 case CSSPropertyShapeImageThreshold: |
2657 return CSSPrimitiveValue::create(style.shapeImageThreshold(), CSSPrimiti
veValue::UnitType::Number); | 2664 return CSSPrimitiveValue::create(style.shapeImageThreshold(), CSSPrimiti
veValue::UnitType::Number); |
2658 case CSSPropertyShapeOutside: | 2665 case CSSPropertyShapeOutside: |
2659 return valueForShape(style, style.shapeOutside()); | 2666 return valueForShape(style, style.shapeOutside()); |
2660 case CSSPropertyFilter: | 2667 case CSSPropertyFilter: |
2661 return valueForFilter(style, style.filter()); | 2668 return valueForFilter(style, style.filter()); |
2662 case CSSPropertyBackdropFilter: | 2669 case CSSPropertyBackdropFilter: |
2663 return valueForFilter(style, style.backdropFilter()); | 2670 return valueForFilter(style, style.backdropFilter()); |
2664 case CSSPropertyMixBlendMode: | 2671 case CSSPropertyMixBlendMode: |
2665 return CSSPrimitiveValue::create(style.blendMode()); | 2672 return CSSPrimitiveValue::create(style.blendMode()); |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3009 case CSSPropertyAll: | 3016 case CSSPropertyAll: |
3010 return nullptr; | 3017 return nullptr; |
3011 default: | 3018 default: |
3012 break; | 3019 break; |
3013 } | 3020 } |
3014 ASSERT_NOT_REACHED(); | 3021 ASSERT_NOT_REACHED(); |
3015 return nullptr; | 3022 return nullptr; |
3016 } | 3023 } |
3017 | 3024 |
3018 } // namespace blink | 3025 } // namespace blink |
OLD | NEW |