Lines Matching refs:encoding
917 // Set the hint encoding to the parent frame encoding only if
920 // containing a carefully crafted html/javascript in one encoding
921 encoding) by
949 if (m_decoder->encoding().usesVisualOrdering())
1278 String FrameLoader::encoding() const
1282 if (m_decoder && m_decoder->encoding().isValid())
1283 return m_decoder->encoding().name();
2205 void FrameLoader::reloadWithOverrideEncoding(const String& encoding)
2220 loader->setOverrideEncoding(encoding);
3305 // Always try UTF-8. If that fails, try frame encoding (if any) and then the default.
3306 // For a newly opened frame with an empty URL, encoding() should not be used, because this methods asks decoder, which uses ISO-8859-1.
3308 request.setResponseContentDispositionEncodingFallbackArray("UTF-8", m_URL.isEmpty() ? m_encoding : encoding(), settings ? settings->defaultTextEncodingName() : String());