summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/word-break/word-break-break-all-030.html
blob: e6a8a0076d4bd80b7eca2a1cf7c568ccf38ac332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang=en>
<meta charset="utf-8">
<title>CSS Text Test: word-break: break-all</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" title="5.2. Breaking Rules for Letters: the word-break property" href="https://drafts.csswg.org/css-text-3/#word-break-property">
<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-word-break-break-all">
<link rel="match" href="reference/word-break-break-all-010-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<meta name="flags" content="Ahem">
<meta name="assert" content="word-break: break-all applies correctly when there is styled text using 'span' elemetns.">
<style>
div {
  position: relative;
  font: 25px / 1 Ahem;
}
.ref {
  position: absolute;
  background: green;
  color: red;
  height: 100px;
  z-index: -1;
}
.test {
  color: transparent;
  width: 4ch;
  word-break: break-all;
}
</style>
<body>
  <p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p>
  <div class="ref"><span style="color: green">XX</span>XX<br>XX</div>
  <div class="test">XX<span style="color: green">XXXX</span>XX</div>
</body>