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.
michael@0 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
michael@0 | 2 | <!-- |
michael@0 | 3 | Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | http://creativecommons.org/publicdomain/zero/1.0/ |
michael@0 | 5 | --> |
michael@0 | 6 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 7 | <head> |
michael@0 | 8 | <title>CSS Reftest Reference</title> |
michael@0 | 9 | <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/> |
michael@0 | 10 | <style> |
michael@0 | 11 | div { height: 100px; border: 0; } |
michael@0 | 12 | div.flexbox { |
michael@0 | 13 | width: 200px; |
michael@0 | 14 | } |
michael@0 | 15 | div.a { |
michael@0 | 16 | display: inline-block; |
michael@0 | 17 | background: lightgreen; |
michael@0 | 18 | border-style: dotted; |
michael@0 | 19 | border-left-width: 2px; |
michael@0 | 20 | border-right-width: 4px; |
michael@0 | 21 | } |
michael@0 | 22 | div.b { |
michael@0 | 23 | display: inline-block; |
michael@0 | 24 | background: yellow; |
michael@0 | 25 | border-style: dashed; |
michael@0 | 26 | border-left-width: 7px; |
michael@0 | 27 | border-right-width: 3px; |
michael@0 | 28 | } |
michael@0 | 29 | div.c { |
michael@0 | 30 | display: inline-block; |
michael@0 | 31 | background: orange; |
michael@0 | 32 | } |
michael@0 | 33 | div.flexNone { |
michael@0 | 34 | display: inline-block; |
michael@0 | 35 | background: pink; |
michael@0 | 36 | } |
michael@0 | 37 | div.flexBasis { |
michael@0 | 38 | display: inline-block; |
michael@0 | 39 | background: gray; |
michael@0 | 40 | } |
michael@0 | 41 | div.spacer { |
michael@0 | 42 | height: 15px; |
michael@0 | 43 | background: purple; |
michael@0 | 44 | } |
michael@0 | 45 | </style> |
michael@0 | 46 | </head> |
michael@0 | 47 | <body> |
michael@0 | 48 | <div class="flexbox"> |
michael@0 | 49 | <div class="b" style="width: 110px"/><div class="a" style="width: 74px"/> |
michael@0 | 50 | </div> |
michael@0 | 51 | <div class="flexbox"> |
michael@0 | 52 | <div class="c" style="width: 137.5px"/><div class="a" style="width: 56.5px"/> |
michael@0 | 53 | </div> |
michael@0 | 54 | <div class="flexbox"> |
michael@0 | 55 | <div class="flexNone"><div class="spacer" style="width: 15px"/> |
michael@0 | 56 | </div><div class="a" style="width: 179px"/> |
michael@0 | 57 | </div> |
michael@0 | 58 | <div class="flexbox"> |
michael@0 | 59 | <div class="c" style="width: 124px" |
michael@0 | 60 | /><div class="b" style="width: 66px"/> |
michael@0 | 61 | </div> |
michael@0 | 62 | <div class="flexbox"> |
michael@0 | 63 | <div class="flexNone"><div class="spacer" style="width: 30px"/> |
michael@0 | 64 | </div><div class="b" style="width: 160px"/> |
michael@0 | 65 | </div> |
michael@0 | 66 | <div class="flexbox"> |
michael@0 | 67 | <div class="c" style="width: 85px" |
michael@0 | 68 | /><div class="flexBasis" style="width: 20px" |
michael@0 | 69 | /><div class="b" style="width: 40px" |
michael@0 | 70 | /><div class="a" style="width: 39px"/> |
michael@0 | 71 | </div> |
michael@0 | 72 | </body> |
michael@0 | 73 | </html> |
michael@0 | 74 |