Bug 449833 - Add platform colors -moz-mac-chrome-active and -moz-mac-chrome-inactive...
[mozilla-central.git] / layout / reftests / pagination / content-inserted-008.xhtml
blob854e5faa3f69d799b676eec6b1981cea97282da5
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 #colset {
8 height: 200px;
9 width: 450px;
10 -moz-column-width: 150px;
11 -moz-column-gap: 0;
12 border: 3px solid silver;
15 #shift {
16 height: 0;
18 #overflow {
19 height: 500px;
21 </style>
22 </head>
24 <body onload="document.getElementById('colset').insertBefore(document.createTextNode('This must be in the first column.'), document.getElementById('x'))">
26 <div id="colset">
27 <div id="shift">
28 <div id="overflow"></div>
29 </div
30 ><div id="x">
31 </div>
32 </div>
34 </body>
36 </html>