| 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #include "sky/engine/core/css/parser/BisonCSSParser.h" | 27 #include "sky/engine/core/css/parser/BisonCSSParser.h" |
| 28 | 28 |
| 29 #include <limits.h> | 29 #include <limits.h> |
| 30 #include "gen/sky/core/CSSValueKeywords.h" | 30 #include "gen/sky/core/CSSValueKeywords.h" |
| 31 #include "gen/sky/core/StylePropertyShorthand.h" | 31 #include "gen/sky/core/StylePropertyShorthand.h" |
| 32 #include "gen/sky/platform/RuntimeEnabledFeatures.h" | 32 #include "gen/sky/platform/RuntimeEnabledFeatures.h" |
| 33 #include "sky/engine/core/css/CSSAspectRatioValue.h" | 33 #include "sky/engine/core/css/CSSAspectRatioValue.h" |
| 34 #include "sky/engine/core/css/CSSBasicShapes.h" | 34 #include "sky/engine/core/css/CSSBasicShapes.h" |
| 35 #include "sky/engine/core/css/CSSBorderImage.h" | 35 #include "sky/engine/core/css/CSSBorderImage.h" |
| 36 #include "sky/engine/core/css/CSSCrossfadeValue.h" | |
| 37 #include "sky/engine/core/css/CSSFontFaceSrcValue.h" | 36 #include "sky/engine/core/css/CSSFontFaceSrcValue.h" |
| 38 #include "sky/engine/core/css/CSSFontFeatureValue.h" | 37 #include "sky/engine/core/css/CSSFontFeatureValue.h" |
| 39 #include "sky/engine/core/css/CSSFunctionValue.h" | 38 #include "sky/engine/core/css/CSSFunctionValue.h" |
| 40 #include "sky/engine/core/css/CSSGradientValue.h" | 39 #include "sky/engine/core/css/CSSGradientValue.h" |
| 41 #include "sky/engine/core/css/CSSImageSetValue.h" | |
| 42 #include "sky/engine/core/css/CSSImageValue.h" | |
| 43 #include "sky/engine/core/css/CSSInheritedValue.h" | 40 #include "sky/engine/core/css/CSSInheritedValue.h" |
| 44 #include "sky/engine/core/css/CSSInitialValue.h" | 41 #include "sky/engine/core/css/CSSInitialValue.h" |
| 45 #include "sky/engine/core/css/CSSLineBoxContainValue.h" | 42 #include "sky/engine/core/css/CSSLineBoxContainValue.h" |
| 46 #include "sky/engine/core/css/CSSPrimitiveValue.h" | 43 #include "sky/engine/core/css/CSSPrimitiveValue.h" |
| 47 #include "sky/engine/core/css/CSSPropertySourceData.h" | 44 #include "sky/engine/core/css/CSSPropertySourceData.h" |
| 48 #include "sky/engine/core/css/CSSSelector.h" | 45 #include "sky/engine/core/css/CSSSelector.h" |
| 49 #include "sky/engine/core/css/CSSShadowValue.h" | 46 #include "sky/engine/core/css/CSSShadowValue.h" |
| 50 #include "sky/engine/core/css/CSSStyleSheet.h" | 47 #include "sky/engine/core/css/CSSStyleSheet.h" |
| 51 #include "sky/engine/core/css/CSSTimingFunctionValue.h" | 48 #include "sky/engine/core/css/CSSTimingFunctionValue.h" |
| 52 #include "sky/engine/core/css/CSSTransformValue.h" | 49 #include "sky/engine/core/css/CSSTransformValue.h" |
| (...skipping 1504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 m_observer->endProperty(isPropertyParsed, m_tokenizer.safeUserStringToke
nOffset(), errorType); | 1554 m_observer->endProperty(isPropertyParsed, m_tokenizer.safeUserStringToke
nOffset(), errorType); |
| 1558 } | 1555 } |
| 1559 | 1556 |
| 1560 void BisonCSSParser::startEndUnknownRule() | 1557 void BisonCSSParser::startEndUnknownRule() |
| 1561 { | 1558 { |
| 1562 if (m_observer) | 1559 if (m_observer) |
| 1563 m_observer->startEndUnknownRule(); | 1560 m_observer->startEndUnknownRule(); |
| 1564 } | 1561 } |
| 1565 | 1562 |
| 1566 } | 1563 } |
| OLD | NEW |