summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/1369985-1-ref.html
blob: 6ed0f7260724e29fbb103df4e3ffd2c5a33e8290 (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
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
body {
  padding: 0;
  margin: 0;
  font-size: 2px;
  line-height: 1;
}
p {
  padding: 0;
  margin: 0;
}
</style>
<body>
<script>
  let x = '<p>' + '\u2588'.repeat(100) + '</p>';
  for (let i = 0; i < 99; i++) {
    document.write(x)
  }
  document.write('<p>あ\nあ</p>');
  for (let i = 0; i < 300; i++) {
    document.write(x)
  }
</script>