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

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

Issue 418163003: Simplify watched selector handling and remove remnants of user stylesheets (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cascade
Patch Set: use includeEmptyRules flag on MatchRequest Created 6 years, 4 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/css/resolver/MatchResult.h » ('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 1580 matching lines...) Expand 10 before | Expand all | Expand 10 after
1591 case CSSPropertyWebkitBorderBeforeStyle: 1591 case CSSPropertyWebkitBorderBeforeStyle:
1592 case CSSPropertyWebkitBorderEndStyle: 1592 case CSSPropertyWebkitBorderEndStyle:
1593 case CSSPropertyWebkitBorderFit: 1593 case CSSPropertyWebkitBorderFit:
1594 case CSSPropertyWebkitBorderStartStyle: 1594 case CSSPropertyWebkitBorderStartStyle:
1595 case CSSPropertyWebkitBoxAlign: 1595 case CSSPropertyWebkitBoxAlign:
1596 case CSSPropertyWebkitBoxDecorationBreak: 1596 case CSSPropertyWebkitBoxDecorationBreak:
1597 case CSSPropertyWebkitBoxDirection: 1597 case CSSPropertyWebkitBoxDirection:
1598 case CSSPropertyWebkitBoxLines: 1598 case CSSPropertyWebkitBoxLines:
1599 case CSSPropertyWebkitBoxOrient: 1599 case CSSPropertyWebkitBoxOrient:
1600 case CSSPropertyWebkitBoxPack: 1600 case CSSPropertyWebkitBoxPack:
1601 case CSSPropertyInternalCallback:
1602 case CSSPropertyWebkitColumnBreakAfter: 1601 case CSSPropertyWebkitColumnBreakAfter:
1603 case CSSPropertyWebkitColumnBreakBefore: 1602 case CSSPropertyWebkitColumnBreakBefore:
1604 case CSSPropertyWebkitColumnBreakInside: 1603 case CSSPropertyWebkitColumnBreakInside:
1605 case CSSPropertyColumnFill: 1604 case CSSPropertyColumnFill:
1606 case CSSPropertyWebkitColumnRuleStyle: 1605 case CSSPropertyWebkitColumnRuleStyle:
1607 case CSSPropertyAlignContent: 1606 case CSSPropertyAlignContent:
1608 case CSSPropertyFlexDirection: 1607 case CSSPropertyFlexDirection:
1609 case CSSPropertyFlexWrap: 1608 case CSSPropertyFlexWrap:
1610 case CSSPropertyJustifyContent: 1609 case CSSPropertyJustifyContent:
1611 case CSSPropertyFontKerning: 1610 case CSSPropertyFontKerning:
(...skipping 6877 matching lines...) Expand 10 before | Expand all | Expand 10 after
8489 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill)); 8488 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueFill));
8490 if (!seenStroke) 8489 if (!seenStroke)
8491 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) ); 8490 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueStroke) );
8492 if (!seenMarkers) 8491 if (!seenMarkers)
8493 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers )); 8492 parsedValues->append(CSSPrimitiveValue::createIdentifier(CSSValueMarkers ));
8494 8493
8495 return parsedValues.release(); 8494 return parsedValues.release();
8496 } 8495 }
8497 8496
8498 } // namespace blink 8497 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/css/parser/BisonCSSParser-in.cpp ('k') | Source/core/css/resolver/MatchResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698