#include "third_party/blink/renderer/platform/fonts/opentype/open_type_cpal_lookup.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_refptr.h"
#include "base/test/task_environment.h"
#include "third_party/blink/public/platform/file_path_conversion.h"
#include "third_party/blink/renderer/platform/fonts/font.h"
#include "third_party/blink/renderer/platform/testing/font_test_base.h"
#include "third_party/blink/renderer/platform/testing/font_test_helpers.h"
#include "third_party/blink/renderer/platform/testing/unit_test_helpers.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkTypeface.h"
#include <utility>
#include <vector>
namespace {
String pathToColrPalettesTestFont() { … }
String pathToNonColrTestFont() { … }
}
namespace blink {
class OpenTypeCpalLookupTest : public FontTestBase { … };
TEST_F(OpenTypeCpalLookupTest, NoResultForNonColr) { … }
TEST_F(OpenTypeCpalLookupTest, DarkLightPalettes) { … }
TEST_F(OpenTypeCpalLookupTest, RetrieveColorRecordsFromExistingPalette) { … }
TEST_F(OpenTypeCpalLookupTest, RetrieveColorRecordsFromNonExistingPalette) { … }
}