| Index: third_party/WebKit/LayoutTests/scrollbars/auto-scrollbar-fit-content.html
|
| diff --git a/third_party/WebKit/LayoutTests/scrollbars/auto-scrollbar-fit-content.html b/third_party/WebKit/LayoutTests/scrollbars/auto-scrollbar-fit-content.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..941e9f53ea531872a701bfc64c0be96006bf24b3
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/scrollbars/auto-scrollbar-fit-content.html
|
| @@ -0,0 +1,17 @@
|
| +<!DOCTYPE html>
|
| +<script src="../resources/js-test.js"></script>
|
| +<div id="top" style="float:left; display:none;">
|
| + <div id="scroller" style="overflow: auto; height: 100px;">
|
| + <div style="width: 100px; height: 200px; border: 2px solid blue;"></div>
|
| + </div>
|
| +</div>
|
| +
|
| +<script>
|
| +description("Make sure a parent block that fits content expands when a child adds an auto scrollbar.");
|
| +
|
| +var topDiv = document.getElementById("top");
|
| +var scroller = document.getElementById("scroller");
|
| +topDiv.style.display = "block";
|
| +topDiv.offsetTop;
|
| +shouldBe("scroller.clientWidth", "scroller.scrollWidth");
|
| +</script>
|
|
|