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

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

Issue 140253004: Implement 'scroll-behavior' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments Created 6 years, 11 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
« no previous file with comments | « Source/core/css/parser/BisonCSSParser-in.cpp ('k') | Source/core/frame/UseCounter.cpp » ('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) 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 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after
1869 case CSSPropertyPaddingLeft: 1869 case CSSPropertyPaddingLeft:
1870 case CSSPropertyPaddingRight: 1870 case CSSPropertyPaddingRight:
1871 case CSSPropertyPaddingTop: 1871 case CSSPropertyPaddingTop:
1872 case CSSPropertyPageBreakAfter: 1872 case CSSPropertyPageBreakAfter:
1873 case CSSPropertyPageBreakBefore: 1873 case CSSPropertyPageBreakBefore:
1874 case CSSPropertyPageBreakInside: 1874 case CSSPropertyPageBreakInside:
1875 case CSSPropertyPointerEvents: 1875 case CSSPropertyPointerEvents:
1876 case CSSPropertyPosition: 1876 case CSSPropertyPosition:
1877 case CSSPropertyResize: 1877 case CSSPropertyResize:
1878 case CSSPropertyRight: 1878 case CSSPropertyRight:
1879 case CSSPropertyScrollBehavior:
1879 case CSSPropertySize: 1880 case CSSPropertySize:
1880 case CSSPropertySpeak: 1881 case CSSPropertySpeak:
1881 case CSSPropertyTabSize: 1882 case CSSPropertyTabSize:
1882 case CSSPropertyTableLayout: 1883 case CSSPropertyTableLayout:
1883 case CSSPropertyTextAlign: 1884 case CSSPropertyTextAlign:
1884 case CSSPropertyTextAlignLast: 1885 case CSSPropertyTextAlignLast:
1885 case CSSPropertyTextDecoration: 1886 case CSSPropertyTextDecoration:
1886 case CSSPropertyTextDecorationLine: 1887 case CSSPropertyTextDecorationLine:
1887 case CSSPropertyTextDecorationStyle: 1888 case CSSPropertyTextDecorationStyle:
1888 case CSSPropertyTextDecorationColor: 1889 case CSSPropertyTextDecorationColor:
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
2209 break; 2210 break;
2210 } 2211 }
2211 case CSSPropertyEnableBackground: 2212 case CSSPropertyEnableBackground:
2212 // Silently ignoring this property for now 2213 // Silently ignoring this property for now
2213 // http://bugs.webkit.org/show_bug.cgi?id=6022 2214 // http://bugs.webkit.org/show_bug.cgi?id=6022
2214 break; 2215 break;
2215 } 2216 }
2216 } 2217 }
2217 2218
2218 } // namespace WebCore 2219 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/css/parser/BisonCSSParser-in.cpp ('k') | Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698