9 <script src=
"../../resources/js-test.js"></script>
13 Both links should render the same and not wrap.
16 <a style=
"display: inline-block;" href=
"#">This shouldn't wrap
</a>
19 <a href=
"#">This shouldn't wrap
</a>
22 var links
= document
.getElementsByTagName('a');
23 var expectedWidth
= links
[1].offsetWidth
;
24 shouldBeCloseTo('links[0].offsetWidth', links
[1].offsetWidth
, 5);