mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
21 lines
325 B
HTML
21 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>
|
|
|