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

Side by Side Diff: Source/core/css/CSSPrimitiveValue.cpp

Issue 16404015: Unprefix -webkit-min-content and -webkit-max-content for grid layout (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2012 Apple Inc. All rights reserv ed.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 case Intrinsic: 277 case Intrinsic:
278 m_primitiveUnitType = CSS_VALUE_ID; 278 m_primitiveUnitType = CSS_VALUE_ID;
279 m_value.valueID = CSSValueIntrinsic; 279 m_value.valueID = CSSValueIntrinsic;
280 break; 280 break;
281 case MinIntrinsic: 281 case MinIntrinsic:
282 m_primitiveUnitType = CSS_VALUE_ID; 282 m_primitiveUnitType = CSS_VALUE_ID;
283 m_value.valueID = CSSValueMinIntrinsic; 283 m_value.valueID = CSSValueMinIntrinsic;
284 break; 284 break;
285 case MinContent: 285 case MinContent:
286 m_primitiveUnitType = CSS_VALUE_ID; 286 m_primitiveUnitType = CSS_VALUE_ID;
287 m_value.valueID = CSSValueWebkitMinContent; 287 m_value.valueID = CSSValueMinContent;
288 break; 288 break;
289 case MaxContent: 289 case MaxContent:
290 m_primitiveUnitType = CSS_VALUE_ID; 290 m_primitiveUnitType = CSS_VALUE_ID;
291 m_value.valueID = CSSValueWebkitMaxContent; 291 m_value.valueID = CSSValueMaxContent;
292 break; 292 break;
293 case FillAvailable: 293 case FillAvailable:
294 m_primitiveUnitType = CSS_VALUE_ID; 294 m_primitiveUnitType = CSS_VALUE_ID;
295 m_value.valueID = CSSValueWebkitFillAvailable; 295 m_value.valueID = CSSValueWebkitFillAvailable;
296 break; 296 break;
297 case FitContent: 297 case FitContent:
298 m_primitiveUnitType = CSS_VALUE_ID; 298 m_primitiveUnitType = CSS_VALUE_ID;
299 m_value.valueID = CSSValueWebkitFitContent; 299 m_value.valueID = CSSValueWebkitFitContent;
300 break; 300 break;
301 case Percent: 301 case Percent:
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 break; 1322 break;
1323 case CSS_CALC: 1323 case CSS_CALC:
1324 info.addMember(m_value.calc, "value.calc"); 1324 info.addMember(m_value.calc, "value.calc");
1325 break; 1325 break;
1326 default: 1326 default:
1327 break; 1327 break;
1328 } 1328 }
1329 } 1329 }
1330 1330
1331 } // namespace WebCore 1331 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698