diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.expected | 2 | ||||
-rw-r--r-- | test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.html | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.expected b/test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.expected new file mode 100644 index 00000000..dec2cbe1 --- /dev/null +++ b/test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.expected @@ -0,0 +1,2 @@ +test +test diff --git a/test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.html b/test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.html new file mode 100644 index 00000000..38256559 --- /dev/null +++ b/test/layout/overflow-auto-in-nested-flex-with-shrink-to-fit.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<div style="display: flex"> +<div style="display: flex; flex-direction:column; max-width: 100%"> +<div style="overflow: auto"> +<div>test</div> +</div> +</div> +</div> + +test |