Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <!-- Testcase for behavior of flex containers that have no children -->
7 <html xmlns="http://www.w3.org/1999/xhtml">
8 <head>
9 <style>
10 div.flexbox {
11 border: 1px dotted blue;
12 background: yellow;
13 display: flex;
14 }
16 div.withPadding {
17 padding: 2px 3px 4px 5px;
18 }
19 </style>
20 </head>
21 <body>
22 <div class="flexbox"/>
23 <div class="flexbox" style="width: 5px"/>
24 <div class="flexbox" style="width: -moz-available"/>
25 <div class="flexbox" style="width: -moz-max-content"/>
26 <div class="flexbox" style="width: -moz-min-content"/>
27 <div class="flexbox" style="height: 6px"/>
28 <div class="flexbox" style="width: 7px; height: 8px"/>
30 <!-- now with padding -->
31 <div class="flexbox withPadding"/>
32 <div class="flexbox withPadding" style="width: 5px"/>
33 <div class="flexbox withPadding" style="width: -moz-available"/>
34 <div class="flexbox withPadding" style="width: -moz-max-content"/>
35 <div class="flexbox withPadding" style="width: -moz-min-content"/>
36 <div class="flexbox withPadding" style="height: 6px"/>
37 <div class="flexbox withPadding" style="width: 7px; height: 8px"/>
38 </body>
39 </html>