<!DOCTYPE html> | |
<html> | |
<style> | |
#container { | |
float: right; | |
font-family: Ahem; | |
} | |
.link | |
{ | |
white-space: nowrap; | |
} | |
</style> | |
</head> | |
<body> | |
<p> webkit.org/b/117284: Don't detect line breaks in trailing collapsing space inside nowrap inlines.</p> | |
<div id="container"> | |
<a href="" class="link"> | |
A | |
</a> | |
<a href="" class="link"> | |
B | |
</a> | |
</div> | |
<br> | |
<div id="container"> | |
<a href="" class="link">A </a> | |
<a href="" class="link">B</a> | |
</div> | |
</body> |