| Index: Source/core/html/parser/HTMLViewSourceParser.cpp
|
| diff --git a/Source/core/html/parser/HTMLViewSourceParser.cpp b/Source/core/html/parser/HTMLViewSourceParser.cpp
|
| index de01ee274d158f4eb95c0466078750c74309cccb..e3942fddfc958052f88713757da6d1d2a210a0a0 100644
|
| --- a/Source/core/html/parser/HTMLViewSourceParser.cpp
|
| +++ b/Source/core/html/parser/HTMLViewSourceParser.cpp
|
| @@ -28,6 +28,7 @@
|
|
|
| #include "core/dom/DOMImplementation.h"
|
| #include "core/html/HTMLViewSourceDocument.h"
|
| +#include "core/html/parser/HTMLIdentifier.h"
|
| #include "core/html/parser/HTMLParserOptions.h"
|
| #include "core/html/parser/HTMLToken.h"
|
|
|
| @@ -53,7 +54,7 @@ void HTMLViewSourceParser::pumpTokenizer()
|
|
|
| // FIXME: The tokenizer should do this work for us.
|
| if (m_token.type() == HTMLToken::StartTag)
|
| - m_tokenizer->updateStateFor(AtomicString(m_token.name()));
|
| + m_tokenizer->updateStateFor(HTMLIdentifier(m_token.name(), Likely8Bit));
|
| m_token.clear();
|
| }
|
| }
|
|
|