summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text/white-space/reference/pre-wrap-float-001-ref.html
blob: e72b3c94ea454eceee9e934ff7929d18da2fc441 (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
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
html {
  font-family: Ahem;
  font-size: 20px;
  line-height: 1;
}
.container {
  white-space: pre;
  margin-bottom: 1em;
}
.float {
  float: left;
  width: 3ch;
  height: 2em;
  background: orange;
}
</style>
<body>
  <div class="float"></div>
  <div class="container">123456<br>123456</div>
  <div class="float"></div>
  <div class="container">1234567<br>1234567</div>
  <div class="float"></div>
  <div class="container">1234567<br>1234567</div>
  <div class="float"></div>
  <div class="container">1234567<br>1234567</div>
  <div class="float"></div>
  <div class="container"><br><br>12345678<br>12345678</div>
</body>