1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/pagination/content-inserted-006.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.5 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.6 + <head> 1.7 + <title>Content Appended in Pagination before ::after (alternate)</title> 1.8 + 1.9 + <style type="text/css"> 1.10 + body { 1.11 + font-size: 16px; 1.12 + } 1.13 + 1.14 + #colset { 1.15 + height: 200px; 1.16 + width: 450px; 1.17 + -moz-column-width: 150px; 1.18 + -moz-column-gap: 0; 1.19 + -moz-column-fill: auto; 1.20 + border: 3px solid silver; 1.21 + } 1.22 + 1.23 + #x { 1.24 + height: 500px; 1.25 + } 1.26 + 1.27 + #x:after { 1.28 + display: block; 1.29 + height: 220px; 1.30 + content: ""; 1.31 + border-top: 4px solid blue; 1.32 + } 1.33 + 1.34 + #shift { 1.35 + height: 201px; 1.36 + border-bottom: 4px solid blue; 1.37 + } 1.38 + 1.39 + #overflow { 1.40 + height: 700px; 1.41 + } 1.42 +</style> 1.43 +</head> 1.44 + 1.45 +<body onload="document.getElementById('x').appendChild(document.createTextNode('This must be in the second column between two 4px blue lines.'))"> 1.46 + 1.47 +<div id="colset"> 1.48 + <div id="x"> 1.49 + <div id="shift"> 1.50 + <div id="overflow"></div> 1.51 + </div 1.52 + ></div> 1.53 +</div> 1.54 + 1.55 +</body> 1.56 + 1.57 +</html>