| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-overflow.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-overflow.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-overflow.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bb7eaf139c3ce8da4495a6864d8b3ac2602a7b02
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-overflow.html
|
| @@ -0,0 +1,35 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.grid {
|
| + display: inline-grid;
|
| + border: thick solid;
|
| + height: 50px;
|
| + width: 50px;
|
| + margin: 50px;
|
| +}
|
| +
|
| +.i1 {
|
| + color: cyan;
|
| + background: magenta;
|
| + font-size: 100px;
|
| +}
|
| +
|
| +.auto { overflow: auto; }
|
| +.hidden { overflow: hidden; }
|
| +</style>
|
| +
|
| +<p>This test checks that implied minimum size of grid items is only applied if overflow is visible.</p>
|
| +<p>The test passes if in the first grid the item overflows, in the second one it has scrollbars,
|
| +and in the third one the item doesn't overflow but it doesn't have scrollbars.</p>
|
| +
|
| +<div class="grid">
|
| + <div class="i1">X</div>
|
| +</div>
|
| +
|
| +<div class="grid">
|
| + <div class="i1 auto">X</div>
|
| +</div>
|
| +
|
| +<div class="grid">
|
| + <div class="i1 hidden">X</div>
|
| +</div>
|
|
|