diff options
Diffstat (limited to 'layout/reftests/bugs/1588954.html')
-rw-r--r-- | layout/reftests/bugs/1588954.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1588954.html b/layout/reftests/bugs/1588954.html new file mode 100644 index 0000000000..e4ef6b6a0e --- /dev/null +++ b/layout/reftests/bugs/1588954.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<style> +#multicol { + font: 16px/1 sans-serif; + max-height: 10px; /* Bound column height without using a fixed height. */ + column-width: 30px; + column-fill: auto; + border: 1px solid gray; +} +.box { + writing-mode: vertical-rl; + width: 10px; + height: 20px; + border: 1px solid blue; +} +</style> + +<div id="multicol"> + <span>a</span> + <main class="box"></main> +</div> |