mirror of
https://github.com/servo/servo
synced 2026-05-09 00:22:16 +02:00
22 lines
325 B
HTML
22 lines
325 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `word-break: break-all` works. -->
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
}
|
|
section {
|
|
word-break: break-all;
|
|
width: 300px;
|
|
color: purple;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section>X XXXXXXX</section>
|
|
</body>
|
|
</html>
|
|
|