webkit-box-anon-flex-items-2-ref.html (618B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title> 5 Reference Case 6 </title> 7 <style> 8 .container { 9 display: flex; 10 justify-content: space-between; 11 width: 300px; 12 border: 1px solid black; 13 font: 10px sans-serif; 14 } 15 span { 16 background: lightgray; 17 } 18 </style> 19 </head> 20 <body> 21 <!-- We use an explicit div here, to match the anonymous div that the testcase 22 is expected to generate around contiguous runs of inline content. --> 23 <div class="container"> 24 <div> 25 raw text 26 <span>start</span> 27 </div> 28 <div>BLOCK</div> 29 <div> 30 <span>end</span> 31 raw text 32 </div> 33 </div> 34 </body> 35 </html>