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

Side by Side Diff: Source/core/css/parser/CSSPropertyParser.cpp

Issue 359023002: Remove CSS Exclusions leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 5 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/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) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. 8 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
9 * Copyright (C) 2012 Intel Corporation. All rights reserved. 9 * Copyright (C) 2012 Intel Corporation. All rights reserved.
10 * 10 *
(...skipping 1571 matching lines...) Expand 10 before | Expand all | Expand 10 after
1582 case CSSPropertyWebkitRtlOrdering: 1582 case CSSPropertyWebkitRtlOrdering:
1583 case CSSPropertyWebkitRubyPosition: 1583 case CSSPropertyWebkitRubyPosition:
1584 case CSSPropertyWebkitTextCombine: 1584 case CSSPropertyWebkitTextCombine:
1585 case CSSPropertyWebkitTextEmphasisPosition: 1585 case CSSPropertyWebkitTextEmphasisPosition:
1586 case CSSPropertyWebkitTextSecurity: 1586 case CSSPropertyWebkitTextSecurity:
1587 case CSSPropertyTransformStyle: 1587 case CSSPropertyTransformStyle:
1588 case CSSPropertyWebkitTransformStyle: 1588 case CSSPropertyWebkitTransformStyle:
1589 case CSSPropertyWebkitUserDrag: 1589 case CSSPropertyWebkitUserDrag:
1590 case CSSPropertyWebkitUserModify: 1590 case CSSPropertyWebkitUserModify:
1591 case CSSPropertyWebkitUserSelect: 1591 case CSSPropertyWebkitUserSelect:
1592 case CSSPropertyWebkitWrapFlow:
1593 case CSSPropertyWebkitWrapThrough:
1594 case CSSPropertyWebkitWritingMode: 1592 case CSSPropertyWebkitWritingMode:
1595 case CSSPropertyWhiteSpace: 1593 case CSSPropertyWhiteSpace:
1596 case CSSPropertyWordBreak: 1594 case CSSPropertyWordBreak:
1597 case CSSPropertyWordWrap: 1595 case CSSPropertyWordWrap:
1598 case CSSPropertyMixBlendMode: 1596 case CSSPropertyMixBlendMode:
1599 case CSSPropertyIsolation: 1597 case CSSPropertyIsolation:
1600 // These properties should be handled before in isValidKeywordPropertyAn dValue(). 1598 // These properties should be handled before in isValidKeywordPropertyAn dValue().
1601 ASSERT_NOT_REACHED(); 1599 ASSERT_NOT_REACHED();
1602 return false; 1600 return false;
1603 // Properties below are validated inside parseViewportProperty, because we 1601 // Properties below are validated inside parseViewportProperty, because we
(...skipping 6827 matching lines...) Expand 10 before | Expand all | Expand 10 after
8431 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); 8429 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill));
8432 if (!seenStroke) 8430 if (!seenStroke)
8433 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) ); 8431 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) );
8434 if (!seenMarkers) 8432 if (!seenMarkers)
8435 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers )); 8433 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers ));
8436 8434
8437 return parsedValues.release(); 8435 return parsedValues.release();
8438 } 8436 }
8439 8437
8440 } // namespace WebCore 8438 } // 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