blob: 451d142598d3f063b4d1972eb3469ed7a669098c [file] [log] [blame]
// Copyright 2014 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 "core/dom/ElementTraversal.h"
#include "core/layout/LayoutBlock.h"
#include "core/layout/LayoutBlockFlow.h"
#include "core/layout/LayoutTestHelper.h"
#include "platform/testing/RuntimeEnabledFeaturesTestHelpers.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace blink {
class LayoutBlockTest : public RenderingTest {};
TEST_F(LayoutBlockTest, LayoutNameCalledWithNullStyle) {
LayoutObject* obj = LayoutBlockFlow::CreateAnonymous(&GetDocument());
EXPECT_FALSE(obj->Style());
EXPECT_STREQ("LayoutBlockFlow (anonymous)",
obj->DecoratedName().Ascii().data());
obj->Destroy();
}
TEST_F(LayoutBlockTest, WidthAvailableToChildrenChanged) {
ScopedOverlayScrollbarsForTest overlay_scrollbars(false);
SetBodyInnerHTML(R"HTML(
<!DOCTYPE html>
<div id='list' style='overflow-y:auto; width:150px; height:100px'>
<div style='height:20px'>Item</div>
<div style='height:20px'>Item</div>
<div style='height:20px'>Item</div>
<div style='height:20px'>Item</div>
<div style='height:20px'>Item</div>
<div style='height:20px'>Item</div>
</div>
)HTML");
Element* list_element = GetDocument().getElementById("list");
ASSERT_TRUE(list_element);
LayoutBox* list_box = ToLayoutBox(list_element->GetLayoutObject());
Element* item_element = ElementTraversal::FirstChild(*list_element);
ASSERT_TRUE(item_element);
ASSERT_GT(list_box->VerticalScrollbarWidth(), 0);
ASSERT_EQ(item_element->OffsetWidth(),
150 - list_box->VerticalScrollbarWidth());
DummyExceptionStateForTesting exception_state;
list_element->style()->setCSSText(&GetDocument(), "width:150px;height:100px;",
exception_state);
ASSERT_FALSE(exception_state.HadException());
GetDocument().View()->UpdateAllLifecyclePhases();
ASSERT_EQ(list_box->VerticalScrollbarWidth(), 0);
ASSERT_EQ(item_element->OffsetWidth(), 150);
}
TEST_F(LayoutBlockTest, OverflowWithTransformAndPerspective) {
SetBodyInnerHTML(R"HTML(
<div id='target' style='width: 100px; height: 100px; overflow: scroll;
perspective: 200px;'>
<div style='transform: rotateY(-45deg); width: 140px; height: 100px'>
</div>
</div>
)HTML");
LayoutBox* scroller =
ToLayoutBox(GetDocument().getElementById("target")->GetLayoutObject());
EXPECT_EQ(119.5, scroller->LayoutOverflowRect().Width().ToFloat());
}
} // namespace blink