File: title_test.svg

package info (click to toggle)
firefox-esr 128.13.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,230,012 kB
  • sloc: cpp: 7,103,971; javascript: 6,088,450; ansic: 3,653,980; python: 1,212,330; xml: 594,604; asm: 420,652; java: 182,969; sh: 71,124; makefile: 20,747; perl: 13,449; objc: 12,399; yacc: 4,583; cs: 3,846; pascal: 2,973; lex: 1,720; ruby: 1,194; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (59 lines) | stat: -rw-r--r-- 1,805 bytes parent folder | download | duplicates (50)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<svg width="640px" height="480px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <title>This is a root SVG element's title</title>
  <foreignObject>
    <html xmlns="http://www.w3.org/1999/xhtml">
      <body>
        <svg xmlns="http://www.w3.org/2000/svg" id="svg1">
          <title>This is a non-root SVG element title</title>
        </svg>
      </body>
    </html>
  </foreignObject>
  <text id="text1" x="10px" y="32px" font-size="24px">
    This contains only &lt;title&gt;
    <title>


    This            is a title

    </title>
  </text>
  <text id="text2" x="10px" y="96px" font-size="24px">
    This contains only &lt;desc&gt;
    <desc>This is a desc</desc>
  </text>
  <text id="text3" x="10px" y="128px" font-size="24px" title="ignored for SVG">
    This contains nothing.
  </text>
  <a id="link1" href="#">
    This link contains &lt;title&gt;
    <title>
      This is a title
    </title>
    <text id="text4" x="10px" y="192px" font-size="24px">
    </text>
  </a>
  <a id="link2" href="#">
    <text x="10px" y="192px" font-size="24px">
      This text contains &lt;title&gt;
      <title>
      This is a title
      </title>
    </text>
  </a>
  <a id="link3" href="#" xlink:title="This is an xlink:title attribute">
    <text x="10px" y="224px" font-size="24px">
      This link contains &lt;title&gt; &amp; xlink:title attr.
      <title>This is a title</title>
    </text>
  </a>
  <a id="link4" href="#" xlink:title="This is an xlink:title attribute">
    <text x="10px" y="256px" font-size="24px">
      This link contains xlink:title attr.
    </text>
  </a>
  <text id="text5" x="10px" y="160px" font-size="24px"
        xlink:title="This is an xlink:title attribute but it isn't on a link" >
    This contains nothing.
  </text>
</svg>