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

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

Issue 7149011: Merge 88448 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/742/
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 5916 matching lines...) Expand 10 before | Expand all | Expand 10 after
5927 case STRING: 5927 case STRING:
5928 case IDENT: 5928 case IDENT:
5929 case NTH: 5929 case NTH:
5930 case HEX: 5930 case HEX:
5931 case IDSEL: 5931 case IDSEL:
5932 case DIMEN: 5932 case DIMEN:
5933 case UNICODERANGE: 5933 case UNICODERANGE:
5934 case FUNCTION: 5934 case FUNCTION:
5935 case ANYFUNCTION: 5935 case ANYFUNCTION:
5936 case NOTFUNCTION: 5936 case NOTFUNCTION:
5937 case CALCFUNCTION:
5938 case MINFUNCTION:
5939 case MAXFUNCTION:
5937 yylval->string.characters = t; 5940 yylval->string.characters = t;
5938 yylval->string.length = length; 5941 yylval->string.length = length;
5939 break; 5942 break;
5940 5943
5941 case IMPORT_SYM: 5944 case IMPORT_SYM:
5942 case PAGE_SYM: 5945 case PAGE_SYM:
5943 case MEDIA_SYM: 5946 case MEDIA_SYM:
5944 case FONT_FACE_SYM: 5947 case FONT_FACE_SYM:
5945 case CHARSET_SYM: 5948 case CHARSET_SYM:
5946 case NAMESPACE_SYM: 5949 case NAMESPACE_SYM:
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
6804 // The macro is used in the tokenizer grammar with lines containing 6807 // The macro is used in the tokenizer grammar with lines containing
6805 // BEGIN(mediaqueries) and BEGIN(initial). yy_start acts as index to 6808 // BEGIN(mediaqueries) and BEGIN(initial). yy_start acts as index to
6806 // tokenizer transition table, and 'mediaqueries' and 'initial' are 6809 // tokenizer transition table, and 'mediaqueries' and 'initial' are
6807 // offset multipliers that specify which transitions are active 6810 // offset multipliers that specify which transitions are active
6808 // in the tokenizer during in each condition (tokenizer state). 6811 // in the tokenizer during in each condition (tokenizer state).
6809 #define BEGIN yy_start = 1 + 2 * 6812 #define BEGIN yy_start = 1 + 2 *
6810 6813
6811 #include "tokenizer.cpp" 6814 #include "tokenizer.cpp"
6812 6815
6813 } 6816 }
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