Bug 1919788 - LSNG: Always acquire a directory lock for PreparedDatastoreOp; r=dom...
[gecko.git] / layout / reftests / pagination / content-inserted-008.xhtml
blobafcef207b253193a1bf782915ba9fc55d3b8d2a2
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 before ::after</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 border: 3px solid silver;
19 #shift {
20 height: 0;
22 #overflow {
23 height: 500px;
25 </style>
26 </head>
28 <body onload="document.getElementById('colset').insertBefore(document.createTextNode('This must be in the first column.'), document.getElementById('x'))">
30 <div id="colset">
31 <div id="shift">
32 <div id="overflow"></div>
33 </div
34 ><div id="x">
35 </div>
36 </div>
38 </body>
40 </html>