summaryrefslogtreecommitdiff
path: root/tests/auto/qsvgplugin/imageInclude.svg
blob: c78d3fae85f77213d87eeed4a8b7dace354ace27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 100 100">
  <circle cx="50" cy="50" r="25" fill="#00ff00" />

  <image x="0" y="0" width="100" height="100" xlink:href="imageIncludeA.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="./imageIncludeA.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href=":/imageIncludeA.svg" />

  <image x="0" y="0" width="100" height="100" xlink:href="notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="./notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="../notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="/notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href=":/notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="qrc:///notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="file:///notExisting.svg" />
  <image x="0" y="0" width="100" height="100" xlink:href="http://qt.io/notExisting.svg" />
</svg>