| Index: Source/core/loader/DocumentLoader.cpp
|
| diff --git a/Source/core/loader/DocumentLoader.cpp b/Source/core/loader/DocumentLoader.cpp
|
| index 7e8d4aa0a90c6f5f273fa9871edc04a1748ffe5b..8645f58a1b37d900cbc67ac879d984525dd373b4 100644
|
| --- a/Source/core/loader/DocumentLoader.cpp
|
| +++ b/Source/core/loader/DocumentLoader.cpp
|
| @@ -931,6 +931,12 @@ String DocumentLoader::mimeType() const
|
| return m_response.mimeType();
|
| }
|
|
|
| +void DocumentLoader::setUserChosenEncoding(const String& charset)
|
| +{
|
| + if (m_writer)
|
| + m_writer->setUserChosenEncoding(charset);
|
| +}
|
| +
|
| // This is only called by ScriptController::executeScriptIfJavaScriptURL
|
| // and always contains the result of evaluating a javascript: url.
|
| // This is the <iframe src="javascript:'html'"> case.
|
|
|