#include "third_party/blink/renderer/platform/text/text_encoding_detector.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/wtf/text/text_encoding.h"
namespace blink {
TEST(TextEncodingDetectorTest, RespectIso2022Jp) { … }
TEST(TextEncodingDetectorTest, Ignore7BitEncoding) { … }
TEST(TextEncodingDetectorTest, NonWHATWGEncodingBecomesAscii) { … }
TEST(TextEncodingDetectorTest, UrlHintHelpsEUCJP) { … }
TEST(TextEncodingDetectorTest, LanguageHintHelpsEUCJP) { … }
TEST(TextEncodingDetectorTest, UTF8DetectionShouldFail) { … }
TEST(TextEncodingDetectorTest, RespectUTF8DetectionForFileResource) { … }
}