Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / css-display / display-contents-writing-mode-2.html
blob03bde8b7695b77dd9c6173ebee93a0b42f8c35b1
1 <!DOCTYPE html>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <html>
7 <head><meta charset="UTF-8">
8 <title>CSS Test: display:contents with orthogonal writing-mode</title>
9 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1258147">
10 <link rel="help" href="http://dev.w3.org/csswg/css-display">
11 <link rel="match" href="display-contents-writing-mode-2-ref.html">
12 <style type="text/css">
14 body {
15 writing-mode: horizontal-tb;
18 div {
19 display: contents;
20 writing-mode: vertical-lr;
23 span {
24 width: 0;
25 border: 1px solid;
28 </style>
29 </head>
30 <body>
31 <div><span>a b c</span></div>
32 </body>
33 </html>