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

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

Issue 1280423002: CSS4: Implement :placeholder-shown pseudo class (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated as per review comments Created 5 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 if (willValidate && (candidate.isValidElement() != element().isValidElem ent())) 88 if (willValidate && (candidate.isValidElement() != element().isValidElem ent()))
89 return false; 89 return false;
90 90
91 if (candidate.isInRange() != element().isInRange()) 91 if (candidate.isInRange() != element().isInRange())
92 return false; 92 return false;
93 93
94 if (candidate.isOutOfRange() != element().isOutOfRange()) 94 if (candidate.isOutOfRange() != element().isOutOfRange())
95 return false; 95 return false;
96 } 96 }
97 97
98 if (candidateInput.isPlaceholderVisible() != thisInput.isPlaceholderVisible( ))
99 return false;
100
98 return true; 101 return true;
99 } 102 }
100 103
101 bool SharedStyleFinder::classNamesAffectedByRules(const SpaceSplitString& classN ames) const 104 bool SharedStyleFinder::classNamesAffectedByRules(const SpaceSplitString& classN ames) const
102 { 105 {
103 unsigned count = classNames.size(); 106 unsigned count = classNames.size();
104 for (unsigned i = 0; i < count; ++i) { 107 for (unsigned i = 0; i < count; ++i) {
105 if (m_features.hasSelectorForClass(classNames[i])) 108 if (m_features.hasSelectorForClass(classNames[i]))
106 return true; 109 return true;
107 } 110 }
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 // Tracking child index requires unique style for each node. This may get se t by the sibling rule match above. 350 // Tracking child index requires unique style for each node. This may get se t by the sibling rule match above.
348 if (!element().parentElementOrShadowRoot()->childrenSupportStyleSharing()) { 351 if (!element().parentElementOrShadowRoot()->childrenSupportStyleSharing()) {
349 INCREMENT_STYLE_STATS_COUNTER(*m_styleResolver, sharedStyleRejectedByPar ent, 1); 352 INCREMENT_STYLE_STATS_COUNTER(*m_styleResolver, sharedStyleRejectedByPar ent, 1);
350 return 0; 353 return 0;
351 } 354 }
352 355
353 return shareElement->mutableComputedStyle(); 356 return shareElement->mutableComputedStyle();
354 } 357 }
355 358
356 } 359 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698