white-space-zero-fontsize-002.html (659B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>CSS Text Test: preserved white space with zero font-size</title> 4 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-property"> 6 <link rel="match" href="reference/white-space-zero-fontsize-002-ref.html"> 7 <meta name="assert" content="Tab in preserved white space is respected even when font-size is zero"> 8 <style> 9 pre { 10 font-size: 0; 11 float: left; 12 border: 1px solid black; 13 margin: 12px; 14 -moz-tab-size: 100px; 15 tab-size: 100px; 16 } 17 span { font-size: 12px; } 18 </style> 19 <pre> 20 <span>foo</span>	<span>bar</span> 21 </pre>