fragmented-inline-block-002-print.html (721B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>test that inline-blocks are fragmented in print output</title> 6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1740304"> 7 <link rel="match" href="fragmented-inline-block-002-print-ref.html"> 8 <style> 9 .tall { 10 /* The reference case has a block; we have an inline-block. 11 Given that there's no other content on our line, we can expect our 12 inline-block to end up rendering and fragmenting like the 13 reference case's block. */ 14 display: inline-block; 15 16 height: 10in; 17 width: 1in; 18 border: 0.5in solid black; 19 } 20 </style> 21 </head> 22 <body> 23 <div class="tall"></div> 24 </body> 25 </html>