| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #include "core/css/resolver/TransformBuilder.h" | 66 #include "core/css/resolver/TransformBuilder.h" |
| 67 #include "core/frame/LocalFrame.h" | 67 #include "core/frame/LocalFrame.h" |
| 68 #include "core/frame/Settings.h" | 68 #include "core/frame/Settings.h" |
| 69 #include "core/style/CounterContent.h" | 69 #include "core/style/CounterContent.h" |
| 70 #include "core/style/ComputedStyle.h" | 70 #include "core/style/ComputedStyle.h" |
| 71 #include "core/style/ComputedStyleConstants.h" | 71 #include "core/style/ComputedStyleConstants.h" |
| 72 #include "core/style/PathStyleMotionPath.h" | 72 #include "core/style/PathStyleMotionPath.h" |
| 73 #include "core/style/QuotesData.h" | 73 #include "core/style/QuotesData.h" |
| 74 #include "core/style/SVGComputedStyle.h" | 74 #include "core/style/SVGComputedStyle.h" |
| 75 #include "core/style/StyleGeneratedImage.h" | 75 #include "core/style/StyleGeneratedImage.h" |
| 76 #include "core/style/StyleVariableData.h" |
| 76 #include "platform/fonts/FontDescription.h" | 77 #include "platform/fonts/FontDescription.h" |
| 77 #include "wtf/MathExtras.h" | 78 #include "wtf/MathExtras.h" |
| 78 #include "wtf/StdLibExtras.h" | 79 #include "wtf/StdLibExtras.h" |
| 79 #include "wtf/Vector.h" | 80 #include "wtf/Vector.h" |
| 80 | 81 |
| 81 namespace blink { | 82 namespace blink { |
| 82 | 83 |
| 83 namespace { | 84 namespace { |
| 84 | 85 |
| 85 static inline bool isValidVisitedLinkProperty(CSSPropertyID id) | 86 static inline bool isValidVisitedLinkProperty(CSSPropertyID id) |
| (...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 return; | 866 return; |
| 866 case CSSValueSuper: | 867 case CSSValueSuper: |
| 867 svgStyle.setBaselineShift(BS_SUPER); | 868 svgStyle.setBaselineShift(BS_SUPER); |
| 868 return; | 869 return; |
| 869 default: | 870 default: |
| 870 ASSERT_NOT_REACHED(); | 871 ASSERT_NOT_REACHED(); |
| 871 } | 872 } |
| 872 } | 873 } |
| 873 | 874 |
| 874 } // namespace blink | 875 } // namespace blink |
| OLD | NEW |