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