blob: 93d258add611c310c8c12ee769b9509dafc39561 [file] [log] [blame]
// Copyright 2016 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_style_declaration.h"
#include "third_party/blink/renderer/core/css/css_rule_list.h"
#include "third_party/blink/renderer/core/css/css_style_rule.h"
#include "third_party/blink/renderer/core/css/css_test_helpers.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace blink {
using namespace css_test_helpers;
TEST(CSSStyleDeclarationTest, getPropertyShorthand) {
TestStyleSheet sheet;
sheet.AddCSSRules("div { padding: var(--p); }");
ASSERT_TRUE(sheet.CssRules());
ASSERT_EQ(1u, sheet.CssRules()->length());
ASSERT_EQ(CSSRule::kStyleRule, sheet.CssRules()->item(0)->type());
CSSStyleRule* style_rule = ToCSSStyleRule(sheet.CssRules()->item(0));
CSSStyleDeclaration* style = style_rule->style();
ASSERT_TRUE(style);
EXPECT_EQ(AtomicString(), style->GetPropertyShorthand("padding"));
}
} // namespace blink