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 | <!-- |
michael@0 | 7 | This test is like the -1a variant, but with the whitespace removed between |
michael@0 | 8 | flex items (since that whitespace should be ignored anyway, if we're |
michael@0 | 9 | doing things right). |
michael@0 | 10 | --> |
michael@0 | 11 | <!-- XXXdholbert Does this testcase add value? |
michael@0 | 12 | (Maybe it should be an alternate reference case.) --> |
michael@0 | 13 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 14 | <head> |
michael@0 | 15 | <title>CSS Test: Test that flex items are created correctly</title> |
michael@0 | 16 | <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/> |
michael@0 | 17 | <link rel="help" href="http://www.w3.org/TR/css3-flexbox/#flex-items"/> |
michael@0 | 18 | <link rel="match" href="flexbox-whitespace-handling-1-ref.xhtml"/> |
michael@0 | 19 | <style> |
michael@0 | 20 | div { height: 100px; } |
michael@0 | 21 | div.flexbox { |
michael@0 | 22 | border: 1px dashed blue; |
michael@0 | 23 | width: 200px; |
michael@0 | 24 | display: flex; |
michael@0 | 25 | justify-content: space-around; |
michael@0 | 26 | } |
michael@0 | 27 | div.a { |
michael@0 | 28 | width: 30px; |
michael@0 | 29 | background: lightgreen; |
michael@0 | 30 | } |
michael@0 | 31 | div.b { |
michael@0 | 32 | width: 20px; |
michael@0 | 33 | background: lightblue; |
michael@0 | 34 | } |
michael@0 | 35 | img { width: 40px; } |
michael@0 | 36 | </style> |
michael@0 | 37 | </head> |
michael@0 | 38 | <body> |
michael@0 | 39 | <div class="flexbox"><div class="a"/></div> |
michael@0 | 40 | |
michael@0 | 41 | <div class="flexbox"><div class="a"/><div class="b"/></div> |
michael@0 | 42 | |
michael@0 | 43 | <div class="flexbox" |
michael@0 | 44 | ><img src="solidblue.png" |
michael@0 | 45 | /><img src="solidblue.png"/></div> |
michael@0 | 46 | </body> |
michael@0 | 47 | </html> |
michael@0 | 48 |