diff options
Diffstat (limited to 'layout/reftests/css-grid/bug1356820-ref.html')
-rw-r--r-- | layout/reftests/css-grid/bug1356820-ref.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/css-grid/bug1356820-ref.html b/layout/reftests/css-grid/bug1356820-ref.html new file mode 100644 index 0000000000..b0cd50fea6 --- /dev/null +++ b/layout/reftests/css-grid/bug1356820-ref.html @@ -0,0 +1,25 @@ +<!DOCTYPE HTML> +<div style="display: grid; width: 5em;"> + <div style="word-wrap: break-word; width: 5em; justify-self:start"> + first item with a longlonglongword + </div> + <div> + second item + </div> +</div> +<div style="display: grid; width: 5em;"> + <div style="width: 5em; justify-self:start"> + first item with a longlonglongword + </div> + <div> + second item + </div> +</div> +<div style="display: grid; width: 5em;"> + <div style="word-wrap: break-word; writing-mode:vertical-lr; justify-self:start"> + first item with a longlonglongword + </div> + <div> + second item + </div> +</div> |