svg-use-page-break-crash-print.html (493B)
1 <!DOCTYPE html> 2 <title>Printing with svg:use and break-before doesn't crash</title> 3 <!-- Really a crashtest but since we can't really have print crashtests, we assert that we print something --> 4 <link rel="mismatch" href="/css/reference/blank.html"> 5 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1690658"> 6 <style> 7 * { 8 break-before: left; 9 } 10 </style> 11 <svg id='id_0'> 12 <rect width=10 height=10 fill=lime></rect> 13 </svg> 14 <svg> 15 <use xlink:href='#id_0'></use> 16 </svg>