diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/css-display/display-contents-writing-mode-2.html | |
parent | 15477ed9af4859dacb069040b5d4de600803d3bc (diff) | |
download | aura-central-ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/css-display/display-contents-writing-mode-2.html')
-rw-r--r-- | layout/reftests/css-display/display-contents-writing-mode-2.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/css-display/display-contents-writing-mode-2.html b/layout/reftests/css-display/display-contents-writing-mode-2.html new file mode 100644 index 000000000..03bde8b76 --- /dev/null +++ b/layout/reftests/css-display/display-contents-writing-mode-2.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<html> +<head><meta charset="UTF-8"> + <title>CSS Test: display:contents with orthogonal writing-mode</title> + <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1258147"> + <link rel="help" href="http://dev.w3.org/csswg/css-display"> + <link rel="match" href="display-contents-writing-mode-2-ref.html"> + <style type="text/css"> + +body { + writing-mode: horizontal-tb; +} + +div { + display: contents; + writing-mode: vertical-lr; +} + +span { + width: 0; + border: 1px solid; +} + + </style> +</head> +<body> +<div><span>a b c</span></div> +</body> +</html> |