Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. | 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. |
| 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) | 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) |
| 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 557 return; | 557 return; |
| 558 | 558 |
| 559 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); | 559 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value); |
| 560 | 560 |
| 561 if (primitiveValue->getValueID()) | 561 if (primitiveValue->getValueID()) |
| 562 return state.style()->setVerticalAlign(*primitiveValue); | 562 return state.style()->setVerticalAlign(*primitiveValue); |
| 563 | 563 |
| 564 state.style()->setVerticalAlignLength(primitiveValue->convertToLength<FixedC onversion | PercentConversion>(state.cssToLengthConversionData())); | 564 state.style()->setVerticalAlignLength(primitiveValue->convertToLength<FixedC onversion | PercentConversion>(state.cssToLengthConversionData())); |
| 565 } | 565 } |
| 566 | 566 |
| 567 void StyleBuilderFunctions::applyValueCSSPropertyTouchAction(StyleResolverState& state, CSSValue* value) | |
| 568 { | |
| 569 TouchAction action = RenderStyle::initialTouchAction(); | |
| 570 for (CSSValueListIterator i(value); i.hasMore(); i.advance()) { | |
| 571 CSSValue* item = i.value(); | |
| 572 action |= *toCSSPrimitiveValue(item); | |
|
Rick Byers
2013/12/10 21:57:14
The other indication that this should be calling y
| |
| 573 } | |
| 574 state.style()->setTouchAction(action); | |
| 575 } | |
| 576 | |
| 567 static void resetEffectiveZoom(StyleResolverState& state) | 577 static void resetEffectiveZoom(StyleResolverState& state) |
| 568 { | 578 { |
| 569 // Reset the zoom in effect. This allows the setZoom method to accurately co mpute a new zoom in effect. | 579 // Reset the zoom in effect. This allows the setZoom method to accurately co mpute a new zoom in effect. |
| 570 state.setEffectiveZoom(state.parentStyle() ? state.parentStyle()->effectiveZ oom() : RenderStyle::initialZoom()); | 580 state.setEffectiveZoom(state.parentStyle() ? state.parentStyle()->effectiveZ oom() : RenderStyle::initialZoom()); |
| 571 } | 581 } |
| 572 | 582 |
| 573 void StyleBuilderFunctions::applyInitialCSSPropertyZoom(StyleResolverState& stat e) | 583 void StyleBuilderFunctions::applyInitialCSSPropertyZoom(StyleResolverState& stat e) |
| 574 { | 584 { |
| 575 resetEffectiveZoom(state); | 585 resetEffectiveZoom(state); |
| 576 state.setZoom(RenderStyle::initialZoom()); | 586 state.setZoom(RenderStyle::initialZoom()); |
| (...skipping 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2170 break; | 2180 break; |
| 2171 } | 2181 } |
| 2172 case CSSPropertyEnableBackground: | 2182 case CSSPropertyEnableBackground: |
| 2173 // Silently ignoring this property for now | 2183 // Silently ignoring this property for now |
| 2174 // http://bugs.webkit.org/show_bug.cgi?id=6022 | 2184 // http://bugs.webkit.org/show_bug.cgi?id=6022 |
| 2175 break; | 2185 break; |
| 2176 } | 2186 } |
| 2177 } | 2187 } |
| 2178 | 2188 |
| 2179 } // namespace WebCore | 2189 } // namespace WebCore |
| OLD | NEW |