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

Side by Side Diff: Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 176853007: [CSS Grid Layout] Implementation of the grid shorthand. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: The grid shorthand property should not be exposed. Created 6 years, 8 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 5 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 10 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
(...skipping 1436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 case CSSPropertyWebkitAnimation: 1447 case CSSPropertyWebkitAnimation:
1448 case CSSPropertyWebkitBorderAfter: 1448 case CSSPropertyWebkitBorderAfter:
1449 case CSSPropertyWebkitBorderBefore: 1449 case CSSPropertyWebkitBorderBefore:
1450 case CSSPropertyWebkitBorderEnd: 1450 case CSSPropertyWebkitBorderEnd:
1451 case CSSPropertyWebkitBorderStart: 1451 case CSSPropertyWebkitBorderStart:
1452 case CSSPropertyWebkitBorderRadius: 1452 case CSSPropertyWebkitBorderRadius:
1453 case CSSPropertyWebkitColumns: 1453 case CSSPropertyWebkitColumns:
1454 case CSSPropertyWebkitColumnRule: 1454 case CSSPropertyWebkitColumnRule:
1455 case CSSPropertyFlex: 1455 case CSSPropertyFlex:
1456 case CSSPropertyFlexFlow: 1456 case CSSPropertyFlexFlow:
1457 case CSSPropertyGrid:
1457 case CSSPropertyGridTemplate: 1458 case CSSPropertyGridTemplate:
1458 case CSSPropertyGridColumn: 1459 case CSSPropertyGridColumn:
1459 case CSSPropertyGridRow: 1460 case CSSPropertyGridRow:
1460 case CSSPropertyGridArea: 1461 case CSSPropertyGridArea:
1461 case CSSPropertyWebkitMarginCollapse: 1462 case CSSPropertyWebkitMarginCollapse:
1462 case CSSPropertyWebkitMask: 1463 case CSSPropertyWebkitMask:
1463 case CSSPropertyWebkitMaskPosition: 1464 case CSSPropertyWebkitMaskPosition:
1464 case CSSPropertyWebkitMaskRepeat: 1465 case CSSPropertyWebkitMaskRepeat:
1465 case CSSPropertyWebkitTextEmphasis: 1466 case CSSPropertyWebkitTextEmphasis:
1466 case CSSPropertyWebkitTextStroke: 1467 case CSSPropertyWebkitTextStroke:
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
2296 break; 2297 break;
2297 } 2298 }
2298 case CSSPropertyEnableBackground: 2299 case CSSPropertyEnableBackground:
2299 // Silently ignoring this property for now 2300 // Silently ignoring this property for now
2300 // http://bugs.webkit.org/show_bug.cgi?id=6022 2301 // http://bugs.webkit.org/show_bug.cgi?id=6022
2301 break; 2302 break;
2302 } 2303 }
2303 } 2304 }
2304 2305
2305 } // namespace WebCore 2306 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698