summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/resolver/css_variable_data_test.cc
blob: f437d9cd072780e7f977174c10bed520cacb7846 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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/core/css/css_variable_data.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/css/parser/css_tokenizer.h"

namespace blink {

namespace {

scoped_refptr<CSSVariableData> CreateVariableData(const String& string) {
  auto tokens = CSSTokenizer(string).TokenizeToEOF();
  return CSSVariableData::Create(tokens, false, false, KURL(),
                                 WTF::TextEncoding());
}

}  // namespace

TEST(CSSVariableDataTest, FontUnitsDetected) {
  EXPECT_FALSE(CreateVariableData("100px")->HasFontUnits());
  EXPECT_FALSE(CreateVariableData("10%")->HasFontUnits());
  EXPECT_FALSE(CreateVariableData("10vw")->HasFontUnits());
  EXPECT_FALSE(CreateVariableData("10rem")->HasFontUnits());

  EXPECT_TRUE(CreateVariableData("10em")->HasFontUnits());
  EXPECT_TRUE(CreateVariableData("10ch")->HasFontUnits());
  EXPECT_TRUE(CreateVariableData("10ex")->HasFontUnits());
  EXPECT_TRUE(CreateVariableData("calc(10em + 10%)")->HasFontUnits());
}

TEST(CSSVariableDataTest, RootFontUnitsDetected) {
  EXPECT_FALSE(CreateVariableData("100px")->HasRootFontUnits());
  EXPECT_FALSE(CreateVariableData("10%")->HasRootFontUnits());
  EXPECT_FALSE(CreateVariableData("10vw")->HasRootFontUnits());
  EXPECT_FALSE(CreateVariableData("10em")->HasRootFontUnits());
  EXPECT_FALSE(CreateVariableData("10ch")->HasRootFontUnits());
  EXPECT_FALSE(CreateVariableData("10ex")->HasRootFontUnits());

  EXPECT_TRUE(CreateVariableData("10rem")->HasRootFontUnits());
  EXPECT_TRUE(CreateVariableData("calc(10rem + 10%)")->HasRootFontUnits());
}

}  // namespace blink