| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc.
All rights reserved. |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. |
| 9 * Copyright (C) 2012 Intel Corporation. All rights reserved. | 9 * Copyright (C) 2012 Intel Corporation. All rights reserved. |
| 10 * | 10 * |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 #include "core/css/CSSValuePool.h" | 53 #include "core/css/CSSValuePool.h" |
| 54 #include "core/css/Counter.h" | 54 #include "core/css/Counter.h" |
| 55 #include "core/css/HashTools.h" | 55 #include "core/css/HashTools.h" |
| 56 #include "core/css/Pair.h" | 56 #include "core/css/Pair.h" |
| 57 #include "core/css/Rect.h" | 57 #include "core/css/Rect.h" |
| 58 #include "core/css/parser/CSSParserFastPaths.h" | 58 #include "core/css/parser/CSSParserFastPaths.h" |
| 59 #include "core/css/parser/CSSParserValues.h" | 59 #include "core/css/parser/CSSParserValues.h" |
| 60 #include "core/frame/UseCounter.h" | 60 #include "core/frame/UseCounter.h" |
| 61 #include "core/html/parser/HTMLParserIdioms.h" | 61 #include "core/html/parser/HTMLParserIdioms.h" |
| 62 #include "core/layout/LayoutTheme.h" | 62 #include "core/layout/LayoutTheme.h" |
| 63 #include "core/layout/style/GridCoordinate.h" | 63 #include "core/style/GridCoordinate.h" |
| 64 #include "core/svg/SVGPathUtilities.h" | 64 #include "core/svg/SVGPathUtilities.h" |
| 65 #include "platform/RuntimeEnabledFeatures.h" | 65 #include "platform/RuntimeEnabledFeatures.h" |
| 66 | 66 |
| 67 namespace blink { | 67 namespace blink { |
| 68 | 68 |
| 69 static const double MAX_SCALE = 1000000; | 69 static const double MAX_SCALE = 1000000; |
| 70 | 70 |
| 71 template <unsigned N> | 71 template <unsigned N> |
| 72 static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N]) | 72 static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N]) |
| 73 { | 73 { |
| (...skipping 8398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8472 } | 8472 } |
| 8473 } | 8473 } |
| 8474 | 8474 |
| 8475 if (!list->length()) | 8475 if (!list->length()) |
| 8476 return nullptr; | 8476 return nullptr; |
| 8477 | 8477 |
| 8478 return list.release(); | 8478 return list.release(); |
| 8479 } | 8479 } |
| 8480 | 8480 |
| 8481 } // namespace blink | 8481 } // namespace blink |
| OLD | NEW |