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

Side by Side Diff: Source/core/dom/Element.cpp

Issue 129633003: Add a first pass of a class descendant invalidator, and a containing RuleSetAnalyzer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed typos. 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * (C) 2007 David Smith (catfish.man@gmail.com) 6 * (C) 2007 David Smith (catfish.man@gmail.com)
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved. 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc. All rights reserved.
8 * (C) 2007 Eric Seidel (eric@webkit.org) 8 * (C) 2007 Eric Seidel (eric@webkit.org)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 1027 matching lines...) Expand 10 before | Expand all | Expand 10 after
1038 1038
1039 if (!length) 1039 if (!length)
1040 return false; 1040 return false;
1041 1041
1042 if (newClassString.is8Bit()) 1042 if (newClassString.is8Bit())
1043 return classStringHasClassName(newClassString.characters8(), length); 1043 return classStringHasClassName(newClassString.characters8(), length);
1044 return classStringHasClassName(newClassString.characters16(), length); 1044 return classStringHasClassName(newClassString.characters16(), length);
1045 } 1045 }
1046 1046
1047 template<typename Checker> 1047 template<typename Checker>
1048 static bool checkSelectorForClassChange(const SpaceSplitString& changedClasses, const Checker& checker) 1048 bool checkSelectorForClassChange(const SpaceSplitString& changedClasses, const C hecker& checker)
esprehn 2014/01/15 04:27:32 It doesn't seem like you need to touch this file a
chrishtr 2014/01/15 18:28:21 Done.
1049 { 1049 {
1050 unsigned changedSize = changedClasses.size(); 1050 unsigned changedSize = changedClasses.size();
1051 for (unsigned i = 0; i < changedSize; ++i) { 1051 for (unsigned i = 0; i < changedSize; ++i) {
1052 if (checker.hasSelectorForClass(changedClasses[i])) 1052 if (checker.hasSelectorForClass(changedClasses[i]))
1053 return true; 1053 return true;
1054 } 1054 }
1055 return false; 1055 return false;
1056 } 1056 }
1057 1057
1058 template<typename Checker> 1058 template<typename Checker>
1059 static bool checkSelectorForClassChange(const SpaceSplitString& oldClasses, cons t SpaceSplitString& newClasses, const Checker& checker) 1059 bool checkSelectorForClassChange(const SpaceSplitString& oldClasses, const Space SplitString& newClasses, const Checker& checker)
1060 { 1060 {
1061 if (!oldClasses.size()) 1061 if (!oldClasses.size())
1062 return checkSelectorForClassChange(newClasses, checker); 1062 return checkSelectorForClassChange(newClasses, checker);
1063 1063
1064 // Class vectors tend to be very short. This is faster than using a hash tab le. 1064 // Class vectors tend to be very short. This is faster than using a hash tab le.
1065 BitVector remainingClassBits; 1065 BitVector remainingClassBits;
1066 remainingClassBits.ensureSize(oldClasses.size()); 1066 remainingClassBits.ensureSize(oldClasses.size());
1067 1067
1068 for (unsigned i = 0; i < newClasses.size(); ++i) { 1068 for (unsigned i = 0; i < newClasses.size(); ++i) {
1069 bool found = false; 1069 bool found = false;
1070 for (unsigned j = 0; j < oldClasses.size(); ++j) { 1070 for (unsigned j = 0; j < oldClasses.size(); ++j) {
1071 if (newClasses[i] == oldClasses[j]) { 1071 if (newClasses[i] == oldClasses[j]) {
1072 // Mark each class that is still in the newClasses so we can ski p doing 1072 // Mark each class that is still in the newClasses so we can ski p doing
1073 // an n^2 search below when looking for removals. We can't break from 1073 // an n^2 search below when looking for removals. We can't break from
1074 // this loop early since a class can appear more than once. 1074 // this loop early since a class can appear more than once.
1075 remainingClassBits.quickSet(j); 1075 remainingClassBits.quickSet(j);
1076 found = true; 1076 found = true;
1077 } 1077 }
1078 } 1078 }
1079 // Class was added. 1079 // Class was added.
1080 if (!found && checker.hasSelectorForClass(newClasses[i])) 1080 if (!found && checker.hasSelectorForClass(newClasses[i]))
1081 return true; 1081 return true;
1082 } 1082 }
1083 1083
1084 for (unsigned i = 0; i < oldClasses.size(); ++i) { 1084 for (unsigned i = 0; i < oldClasses.size(); ++i) {
1085 if (remainingClassBits.quickGet(i)) 1085 if (remainingClassBits.quickGet(i))
1086 continue; 1086 continue;
1087
1087 // Class was removed. 1088 // Class was removed.
1088 if (checker.hasSelectorForClass(oldClasses[i])) 1089 if (checker.hasSelectorForClass(oldClasses[i]))
1089 return true; 1090 return true;
1090 } 1091 }
1091 1092
1092 return false; 1093 return false;
1093 } 1094 }
1094 1095
1095 void Element::classAttributeChanged(const AtomicString& newClassString) 1096 void Element::classAttributeChanged(const AtomicString& newClassString)
1096 { 1097 {
(...skipping 2540 matching lines...) Expand 10 before | Expand all | Expand 10 after
3637 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems 3638 // Before doing so, we need to resolve issues in HTMLSelectElement::recalcLi stItems
3638 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405 3639 // and RenderMenuList::setText. See also https://bugs.webkit.org/show_bug.cg i?id=88405
3639 if (hasTagName(optionTag) || hasTagName(optgroupTag)) 3640 if (hasTagName(optionTag) || hasTagName(optgroupTag))
3640 return false; 3641 return false;
3641 if (FullscreenElementStack::isActiveFullScreenElement(this)) 3642 if (FullscreenElementStack::isActiveFullScreenElement(this))
3642 return false; 3643 return false;
3643 return true; 3644 return true;
3644 } 3645 }
3645 3646
3646 } // namespace WebCore 3647 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698