forked from mirrors/gecko-dev
Automatic update from web-platform-tests Load Ahem as a webfont everywhere (part 2) (#17173) This change updates a large number of reftests to link to the `/fonts/ahem.css` stylesheet. Each file contains a single additional line before the first `<style>` element: ``` <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> ``` -- wp5At-commits: 9c780585758acf5e9ac6d17ad9bd03c83404c7e6 wpt-pr: 17173
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Text Test: overflow-wrap: break-word</title>
|
|
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
|
|
<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-overflow-wrap-break-word">
|
|
<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-pre-wrap">
|
|
<meta name="flags" content="ahem">
|
|
<link rel="match" href="reference/overflow-wrap-break-word-001-ref.html">
|
|
<meta name="assert" content="A Single leading white-space constitutes a soft breaking opportunity, honoring the 'white-space: pre-wrap' property, that must prevent the word to be broken.">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<style>
|
|
div {
|
|
position: relative;
|
|
font-size: 20px;
|
|
font-family: Ahem;
|
|
line-height: 1em;
|
|
}
|
|
.red {
|
|
position: absolute;
|
|
background: green;
|
|
color: red;
|
|
width: 100px;
|
|
height: 100px;
|
|
z-index: -1;
|
|
}
|
|
.test {
|
|
color: green;
|
|
width: 5ch;
|
|
|
|
white-space: pre-wrap;
|
|
overflow-wrap: break-word;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
|
|
<div class="red"><br>XXXXX</div>
|
|
<div class="test"> XXXXX </div>
|
|
</body>
|