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

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

Issue 12470005: Merge 144626 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 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 | « Source/WebCore/css/StylePropertyShorthand.cpp ('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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 3572 matching lines...) Expand 10 before | Expand all | Expand 10 after
3583 state.style->setGridItemColumn(column); 3583 state.style->setGridItemColumn(column);
3584 return; 3584 return;
3585 } 3585 }
3586 case CSSPropertyWebkitGridRow: { 3586 case CSSPropertyWebkitGridRow: {
3587 GridPosition row; 3587 GridPosition row;
3588 if (!createGridPosition(value, row)) 3588 if (!createGridPosition(value, row))
3589 return; 3589 return;
3590 state.style->setGridItemRow(row); 3590 state.style->setGridItemRow(row);
3591 return; 3591 return;
3592 } 3592 }
3593 // These properties are aliased and StyleBuilder already applied the propert y on the prefixed version.
3594 case CSSPropertyTransitionDelay:
3595 case CSSPropertyTransitionDuration:
3596 case CSSPropertyTransitionProperty:
3597 case CSSPropertyTransitionTimingFunction:
3598 return;
3593 // These properties are implemented in the StyleBuilder lookup table. 3599 // These properties are implemented in the StyleBuilder lookup table.
3594 case CSSPropertyBackgroundAttachment: 3600 case CSSPropertyBackgroundAttachment:
3595 case CSSPropertyBackgroundClip: 3601 case CSSPropertyBackgroundClip:
3596 case CSSPropertyBackgroundColor: 3602 case CSSPropertyBackgroundColor:
3597 case CSSPropertyBackgroundImage: 3603 case CSSPropertyBackgroundImage:
3598 case CSSPropertyBackgroundOrigin: 3604 case CSSPropertyBackgroundOrigin:
3599 case CSSPropertyBackgroundPosition: 3605 case CSSPropertyBackgroundPosition:
3600 case CSSPropertyBackgroundPositionX: 3606 case CSSPropertyBackgroundPositionX:
3601 case CSSPropertyBackgroundPositionY: 3607 case CSSPropertyBackgroundPositionY:
3602 case CSSPropertyBackgroundRepeat: 3608 case CSSPropertyBackgroundRepeat:
(...skipping 1631 matching lines...) Expand 10 before | Expand all | Expand 10 after
5234 info.addMember(m_state, "state"); 5240 info.addMember(m_state, "state");
5235 5241
5236 // FIXME: move this to a place where it would be called only once? 5242 // FIXME: move this to a place where it would be called only once?
5237 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle"); 5243 info.addMember(CSSDefaultStyleSheets::defaultStyle, "defaultStyle");
5238 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e"); 5244 info.addMember(CSSDefaultStyleSheets::defaultQuirksStyle, "defaultQuirksStyl e");
5239 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ; 5245 info.addMember(CSSDefaultStyleSheets::defaultPrintStyle,"defaultPrintStyle") ;
5240 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle"); 5246 info.addMember(CSSDefaultStyleSheets::defaultViewSourceStyle, "defaultViewSo urceStyle");
5241 } 5247 }
5242 5248
5243 } // namespace WebCore 5249 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/WebCore/css/StylePropertyShorthand.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698