mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
20 lines
687 B
HTML
20 lines
687 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<style type="text/css">
|
|
.breakall { width: 0px; word-break: break-all; }
|
|
.keepall { width: 0px; word-break: keep-all; }
|
|
.lc { text-transform: lowercase; }
|
|
.uc { text-transform: uppercase; }
|
|
</style>
|
|
<title>Test - word-break:break-all with text-transform and clusters</title>
|
|
</head>
|
|
<body>
|
|
<div class="breakall lc">fox fo̥ẋ</div><br>
|
|
<div class="keepall lc">fox fo̥ẋ</div><br>
|
|
<div class="breakall uc">fox fo̥ẋ</div><br>
|
|
<div class="keepall uc">fox fo̥ẋ</div><br>
|
|
</body>
|
|
</html>
|