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

Side by Side Diff: Source/WebCore/css/CSSParser.cpp

Issue 7149010: Merge 88448 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 years, 6 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
« no previous file with comments | « LayoutTests/css3/calc/regression-62276-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 5941 matching lines...) Expand 10 before | Expand all | Expand 10 after
5952 case STRING: 5952 case STRING:
5953 case IDENT: 5953 case IDENT:
5954 case NTH: 5954 case NTH:
5955 case HEX: 5955 case HEX:
5956 case IDSEL: 5956 case IDSEL:
5957 case DIMEN: 5957 case DIMEN:
5958 case UNICODERANGE: 5958 case UNICODERANGE:
5959 case FUNCTION: 5959 case FUNCTION:
5960 case ANYFUNCTION: 5960 case ANYFUNCTION:
5961 case NOTFUNCTION: 5961 case NOTFUNCTION:
5962 case CALCFUNCTION:
5963 case MINFUNCTION:
5964 case MAXFUNCTION:
5962 yylval->string.characters = t; 5965 yylval->string.characters = t;
5963 yylval->string.length = length; 5966 yylval->string.length = length;
5964 break; 5967 break;
5965 5968
5966 case IMPORT_SYM: 5969 case IMPORT_SYM:
5967 case PAGE_SYM: 5970 case PAGE_SYM:
5968 case MEDIA_SYM: 5971 case MEDIA_SYM:
5969 case FONT_FACE_SYM: 5972 case FONT_FACE_SYM:
5970 case CHARSET_SYM: 5973 case CHARSET_SYM:
5971 case NAMESPACE_SYM: 5974 case NAMESPACE_SYM:
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
6829 // The macro is used in the tokenizer grammar with lines containing 6832 // The macro is used in the tokenizer grammar with lines containing
6830 // BEGIN(mediaqueries) and BEGIN(initial). yy_start acts as index to 6833 // BEGIN(mediaqueries) and BEGIN(initial). yy_start acts as index to
6831 // tokenizer transition table, and 'mediaqueries' and 'initial' are 6834 // tokenizer transition table, and 'mediaqueries' and 'initial' are
6832 // offset multipliers that specify which transitions are active 6835 // offset multipliers that specify which transitions are active
6833 // in the tokenizer during in each condition (tokenizer state). 6836 // in the tokenizer during in each condition (tokenizer state).
6834 #define BEGIN yy_start = 1 + 2 * 6837 #define BEGIN yy_start = 1 + 2 *
6835 6838
6836 #include "tokenizer.cpp" 6839 #include "tokenizer.cpp"
6837 6840
6838 } 6841 }
OLDNEW
« no previous file with comments | « LayoutTests/css3/calc/regression-62276-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698