| Index: third_party/WebKit/Source/core/css/resolver/SharedStyleFinder.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/SharedStyleFinder.cpp b/third_party/WebKit/Source/core/css/resolver/SharedStyleFinder.cpp
|
| index ff251b5a974f96c2b50f1a537eca42703b9b10f4..e359587cbca8e25d23d21e0165d8a74a2da1907c 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/SharedStyleFinder.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/SharedStyleFinder.cpp
|
| @@ -137,7 +137,7 @@ bool SharedStyleFinder::sharingCandidateHasIdenticalStyleAffectingAttributes(Ele
|
| if (candidate.hasClass() && classNamesAffectedByRules(candidate.classNames()))
|
| return false;
|
| } else if (candidate.hasClass()) {
|
| - // SVG elements require a (slow!) getAttribute comparision because "class" is an animatable attribute for SVG.
|
| + // SVG elements require a (slow!) getAttribute comparison because "class" is an animatable attribute for SVG.
|
| if (element().isSVGElement()) {
|
| if (element().getAttribute(classAttr) != candidate.getAttribute(classAttr))
|
| return false;
|
|
|