| Index: third_party/WebKit/LayoutTests/fast/css-intrinsic-dimensions/fill-available-with-zero-width-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-intrinsic-dimensions/fill-available-with-zero-width-expected.html b/third_party/WebKit/LayoutTests/fast/css-intrinsic-dimensions/fill-available-with-zero-width-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0c62bc46cfc1d653aa53b290db28d984b2a61ed2
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-intrinsic-dimensions/fill-available-with-zero-width-expected.html
|
| @@ -0,0 +1,37 @@
|
| +<!DOCTYPE html>
|
| +<link href="resources/width-keyword-classes.css" rel="stylesheet">
|
| +<style>
|
| +.block {
|
| + width: 0px;
|
| + font: 10px/1 Ahem;
|
| +}
|
| +
|
| +.item {
|
| + border: 5px solid magenta;
|
| + background: cyan;
|
| +}
|
| +</style>
|
| +
|
| +<p>Checking out that 'min-width' as 'fill-available' respects border and padding sizes when container size is 0px, behaving like min-width: auto.</p>
|
| +
|
| +<h2>block</h2>
|
| +
|
| +<div class="block">
|
| + <div class="item">item</div>
|
| +</div>
|
| +
|
| +<hr>
|
| +
|
| +<h2>flex</h2>
|
| +
|
| +<div class="block">
|
| + <div class="item">item</div>
|
| +</div>
|
| +
|
| +<hr>
|
| +
|
| +<h2>grid</h2>
|
| +
|
| +<div class="block">
|
| + <div class="item">item</div>
|
| +</div>
|
|
|