tenfourfox/layout/reftests/line-breaking/hyphens-2-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

34 lines
661 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
p { margin: 5px 1em; }
</style>
</head>
<body>
<!-- bug 827779:
Allow break after hyphen even when there is adjacent closing punctuation
before the hyphen, or opening punctuation after it. -->
<p>
extra-<br>“special”<br>
“extra”-<br>special<br>
“extra”-<br>“special”<br>
extra-<br>«special»<br>
«extra»-<br>special<br>
«extra»-<br>«special»<br>
extra-<br>(special)<br>
(extra)-<br>special<br>
(extra)-<br>(special)
</p>
<!-- but not in variants such as these: -->
<p>
(extra-)special<br>
extra(-special)
</p>
</body>
</html>