| Index: third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp b/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
|
| index 67e9caff836c76efa3d406a4058f54b028526890..9e0703333a4871dcc5cf76c47a9893afc981ef4e 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.cpp
|
| @@ -90,7 +90,7 @@ static bool tokenExitsForeignContent(const CompactHTMLToken& token)
|
| static bool tokenExitsSVG(const CompactHTMLToken& token)
|
| {
|
| // FIXME: It's very fragile that we special case foreignObject here to be case-insensitive.
|
| - return equalIgnoringCaseNonNull(token.data().impl(), SVGNames::foreignObjectTag.localName().impl());
|
| + return equalIgnoringCase(token.data(), SVGNames::foreignObjectTag.localName());
|
| }
|
|
|
| static bool tokenExitsMath(const CompactHTMLToken& token)
|
|
|