flexbox-fragmentation-layout-001-crash.html (1249B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Flexbox: flexbox fragmentation</title> 5 <link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers"> 6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1708007"> 7 <style> 8 * { 9 display: inline-flex; 10 border-left-style: ridge; 11 border-top: green ridge 3289332275.907055mm; 12 box-sizing: border-box; 13 white-space: pre; 14 max-block-size: 2307181333.664816mm; 15 float: inline-end; 16 columns: 2800509010 1630715400.2851658ex; 17 </style> 18 <script> 19 window.addEventListener('load', () => { 20 const details = document.createElement('details') 21 details.setAttribute('open', true) 22 const span = document.createElement('span') 23 const small = document.createElement('small') 24 small.innerText = '𧄚۹㏬1q/\n\rI퐆҆徢۹𠹅𝅧۹٠𖩡zc\r\naB-=^�辴x?>>>=𝅯🨸-銒㿎٩𢂷+=\bᣰ&\b\r0A۹' 25 span.appendChild(small) 26 details.appendChild(span) 27 document.documentElement.appendChild(details) 28 }) 29 </script> 30 </head> 31 </html>