Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: Source/core/css/CSSGrammar.y

Issue 112933010: Split out CSSParser public API Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 %{ 1 %{
2 2
3 /* 3 /*
4 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org) 4 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved.
6 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
7 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2012 Intel Corporation. All rights reserved. 8 * Copyright (C) 2012 Intel Corporation. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 11 matching lines...) Expand all
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U SA
23 * 23 *
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 27
28 #include "CSSPropertyNames.h" 28 #include "CSSPropertyNames.h"
29 #include "HTMLNames.h" 29 #include "HTMLNames.h"
30 #include "core/css/CSSKeyframeRule.h" 30 #include "core/css/CSSKeyframeRule.h"
31 #include "core/css/CSSKeyframesRule.h" 31 #include "core/css/CSSKeyframesRule.h"
32 #include "core/css/parser/BisonCSSParser.h"
33 #include "core/css/CSSParserMode.h" 32 #include "core/css/CSSParserMode.h"
34 #include "core/css/CSSPrimitiveValue.h" 33 #include "core/css/CSSPrimitiveValue.h"
35 #include "core/css/CSSSelector.h" 34 #include "core/css/CSSSelector.h"
36 #include "core/css/CSSSelectorList.h" 35 #include "core/css/CSSSelectorList.h"
37 #include "core/css/MediaList.h" 36 #include "core/css/MediaList.h"
38 #include "core/css/MediaQueryExp.h" 37 #include "core/css/MediaQueryExp.h"
39 #include "core/css/StyleRule.h" 38 #include "core/css/StyleRule.h"
40 #include "core/css/StyleSheetContents.h" 39 #include "core/css/StyleSheetContents.h"
40 #include "core/css/parser/BisonCSSParser.h"
41 #include "core/dom/Document.h" 41 #include "core/dom/Document.h"
42 #include "wtf/FastMalloc.h" 42 #include "wtf/FastMalloc.h"
43 #include <stdlib.h> 43 #include <stdlib.h>
44 #include <string.h> 44 #include <string.h>
45 45
46 using namespace WebCore; 46 using namespace WebCore;
47 using namespace HTMLNames; 47 using namespace HTMLNames;
48 48
49 #define YYMALLOC fastMalloc 49 #define YYMALLOC fastMalloc
50 #define YYFREE fastFree 50 #define YYFREE fastFree
(...skipping 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after
1976 1976
1977 rule_error_recovery: 1977 rule_error_recovery:
1978 /* empty */ 1978 /* empty */
1979 | rule_error_recovery error 1979 | rule_error_recovery error
1980 | rule_error_recovery invalid_square_brackets_block 1980 | rule_error_recovery invalid_square_brackets_block
1981 | rule_error_recovery invalid_parentheses_block 1981 | rule_error_recovery invalid_parentheses_block
1982 ; 1982 ;
1983 1983
1984 %% 1984 %%
1985 1985
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698