Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions svg-aam/name/comp_host_language_label.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,45 @@ <h2>SVG * > title</h2>
</svg>
<br>

<h2>Interactive Elements > SVG > title</h2>
<a href="#" data-expectedlabel="circle label" data-testname="a > circle > title" class="ex">
<svg viewbox="0 0 300 100">
<title>circle label</title>
<circle cx="26" cy="26" r="25"></circle>
</svg>
</a>
<a href="#" data-expectedlabel="rect label" data-testname="a > rect > title" class="ex">
<svg viewbox="0 0 300 100">
<title>rect label</title>
<rect x="60" y="1" width="50" height="50"></rect>
</svg>
</a>
<a href="#" data-expectedlabel="polygon label" data-testname="a > polygon > title" class="ex">
<svg viewbox="0 0 300 100">
<title>polygon label</title>
<polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="black"></polygon>
</svg>
</a>
<button href="#" data-expectedlabel="circle label" data-testname="button > circle > title" class="ex">
<svg viewbox="0 0 300 100">
<title>circle label</title>
<circle cx="26" cy="26" r="25"></circle>
</svg>
</button>
<button href="#" data-expectedlabel="rect label" data-testname="button > rect > title" class="ex">
<svg viewbox="0 0 300 100">
<title>rect label</title>
<rect x="60" y="1" width="50" height="50"></rect>
</svg>
</button>
<button href="#" data-expectedlabel="polygon label" data-testname="button > polygon > title" class="ex">
<svg viewbox="0 0 300 100">
<title>polygon label</title>
<polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="black"></polygon>
</svg>
</button>
<br>


<h2>SVG a[xlink:title][href]</h2>
<svg viewbox="0 0 300 100">
Expand Down