summaryrefslogtreecommitdiff
path: root/layout/reftests/css-display/display-contents-writing-mode-2.html
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commitad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/css-display/display-contents-writing-mode-2.html
parent15477ed9af4859dacb069040b5d4de600803d3bc (diff)
downloadaura-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.html33
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>