https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 917079928307fcb4a5d8744e3cad5c8db541e08d authored by B2G Bumper Bot on 11 September 2015, 10:15:46 UTC
Bumping manifests a=b2g-bump
Tip revision: 9170799
hyphens-2-ref.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>
back to top