5 <title>A multi-line link
</title>
9 This test page contains a link that spans two lines.
10 The center of the bounding box of the link is not inside the link element.
12 <p style=
"max-width: 15em">
13 <span id=
"filler"></span>
14 <a href=
"#top">a link
</a>
17 var filler
= document
.getElementById('filler');
18 var link
= document
.getElementsByTagName('a')[0];
20 filler
.innerHTML
+= 'x';
21 } while (link
.getClientRects().length
< 2);