| Index: third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.h
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.h b/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.h
|
| index 1d4d898b03dffd9cfa45d9777589daa763e7976e..828e5a41da6173dea62016cbebf0872d7d5eca86 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.h
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLTreeBuilderSimulator.h
|
| @@ -76,9 +76,9 @@ public:
|
| void setState(const State& state) { m_stack = state; }
|
|
|
| SimulatedToken simulate(const CompactHTMLToken&, HTMLTokenizer*);
|
| + bool inForeignContent() const { return currentNamespace() != HTML; }
|
|
|
| private:
|
| - bool inForeignContent() const { return currentNamespace() != HTML; }
|
| Namespace currentNamespace() const { return static_cast<Namespace>(m_stack.last().ns); }
|
| bool stackContainsNamespace(Namespace namespaceOfInterest) const
|
| {
|
|
|