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

Side by Side Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 53373003: Remove display:run-in as per https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/_tHSX… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix test Created 7 years, 1 month 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
« no previous file with comments | « Source/core/css/CSSParser-in.cpp ('k') | Source/core/css/CSSValueKeywords.in » ('j') | 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) 2007 Alexey Proskuryakov <ap@nypop.com>. 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>.
3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 switch (e) { 1235 switch (e) {
1236 case INLINE: 1236 case INLINE:
1237 m_value.valueID = CSSValueInline; 1237 m_value.valueID = CSSValueInline;
1238 break; 1238 break;
1239 case BLOCK: 1239 case BLOCK:
1240 m_value.valueID = CSSValueBlock; 1240 m_value.valueID = CSSValueBlock;
1241 break; 1241 break;
1242 case LIST_ITEM: 1242 case LIST_ITEM:
1243 m_value.valueID = CSSValueListItem; 1243 m_value.valueID = CSSValueListItem;
1244 break; 1244 break;
1245 case RUN_IN:
1246 m_value.valueID = CSSValueRunIn;
1247 break;
1248 case COMPACT: 1245 case COMPACT:
1249 m_value.valueID = CSSValueCompact; 1246 m_value.valueID = CSSValueCompact;
1250 break; 1247 break;
1251 case INLINE_BLOCK: 1248 case INLINE_BLOCK:
1252 m_value.valueID = CSSValueInlineBlock; 1249 m_value.valueID = CSSValueInlineBlock;
1253 break; 1250 break;
1254 case TABLE: 1251 case TABLE:
1255 m_value.valueID = CSSValueTable; 1252 m_value.valueID = CSSValueTable;
1256 break; 1253 break;
1257 case INLINE_TABLE: 1254 case INLINE_TABLE:
(...skipping 3708 matching lines...) Expand 10 before | Expand all | Expand 10 after
4966 break; 4963 break;
4967 } 4964 }
4968 4965
4969 ASSERT_NOT_REACHED(); 4966 ASSERT_NOT_REACHED();
4970 return TouchActionDelayNone; 4967 return TouchActionDelayNone;
4971 } 4968 }
4972 4969
4973 } 4970 }
4974 4971
4975 #endif 4972 #endif
OLDNEW
« no previous file with comments | « Source/core/css/CSSParser-in.cpp ('k') | Source/core/css/CSSValueKeywords.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698