Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / pagination / content-inserted-005.xhtml
blobd410fe1f4aae5b1b6ac68a34db5dd00d6d8ec2e4
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>Content Appended in Pagination after ::before</title>
6 <style type="text/css">
7 body {
8 font-size: 16px;
11 #colset {
12 height: 200px;
13 width: 450px;
14 column-width: 150px;
15 column-gap: 0;
16 column-fill: auto;
17 border: 3px solid silver;
20 #x {
21 border-bottom: 4px solid blue;
24 #x:before {
25 display: block;
26 height: 201px;
27 content: "";
28 border-bottom: 4px solid blue;
30 </style>
31 </head>
33 <body onload="document.getElementById('x').insertBefore(document.createTextNode('This must be in the second column between two 4px blue lines.'), null)">
35 <div id="colset">
36 <div id="x">
37 </div>
38 </div>
40 </body>
42 </html>