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

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

Issue 23477048: Media query malformed when 'or' is used as a media type. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 App le Inc. All rights reserved.
4 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) 4 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com)
5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
6 * Copyright (C) 2012 Intel Corporation. All rights reserved. 6 * Copyright (C) 2012 Intel Corporation. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public 9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 %token <marginBox> RIGHTTOP_SYM 163 %token <marginBox> RIGHTTOP_SYM
164 %token <marginBox> RIGHTMIDDLE_SYM 164 %token <marginBox> RIGHTMIDDLE_SYM
165 %token <marginBox> RIGHTBOTTOM_SYM 165 %token <marginBox> RIGHTBOTTOM_SYM
166 166
167 %token ATKEYWORD 167 %token ATKEYWORD
168 168
169 %token IMPORTANT_SYM 169 %token IMPORTANT_SYM
170 %token MEDIA_ONLY 170 %token MEDIA_ONLY
171 %token MEDIA_NOT 171 %token MEDIA_NOT
172 %token MEDIA_AND 172 %token MEDIA_AND
173 %token MEDIA_OR
173 174
174 %token SUPPORTS_NOT 175 %token SUPPORTS_NOT
175 %token SUPPORTS_AND 176 %token SUPPORTS_AND
176 %token SUPPORTS_OR 177 %token SUPPORTS_OR
177 178
178 %token <number> REMS 179 %token <number> REMS
179 %token <number> CHS 180 %token <number> CHS
180 %token <number> QEMS 181 %token <number> QEMS
181 %token <number> EMS 182 %token <number> EMS
182 %token <number> EXS 183 %token <number> EXS
(...skipping 1739 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 1923
1923 rule_error_recovery: 1924 rule_error_recovery:
1924 /* empty */ 1925 /* empty */
1925 | rule_error_recovery error 1926 | rule_error_recovery error
1926 | rule_error_recovery invalid_square_brackets_block 1927 | rule_error_recovery invalid_square_brackets_block
1927 | rule_error_recovery invalid_parentheses_block 1928 | rule_error_recovery invalid_parentheses_block
1928 ; 1929 ;
1929 1930
1930 %% 1931 %%
1931 1932
OLDNEW
« no previous file with comments | « LayoutTests/fast/media/mq-invalid-media-type-expected.html ('k') | Source/core/css/CSSParser-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698