chromium/third_party/blink/renderer/platform/text/text_encoding_detector_test.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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) {}

}  // namespace blink