Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
michael@0 | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Content Inserted in Pagination after ::before</title> |
michael@0 | 5 | |
michael@0 | 6 | <style type="text/css"> |
michael@0 | 7 | body { |
michael@0 | 8 | font-size: 16px; |
michael@0 | 9 | } |
michael@0 | 10 | |
michael@0 | 11 | #colset { |
michael@0 | 12 | height: 200px; |
michael@0 | 13 | width: 450px; |
michael@0 | 14 | -moz-column-width: 150px; |
michael@0 | 15 | -moz-column-gap: 0; |
michael@0 | 16 | -moz-column-fill: auto; |
michael@0 | 17 | border: 3px solid silver; |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | #x { |
michael@0 | 21 | height: 500px; |
michael@0 | 22 | } |
michael@0 | 23 | |
michael@0 | 24 | #x:before { |
michael@0 | 25 | display: block; |
michael@0 | 26 | height: 201px; |
michael@0 | 27 | padding: 0 10px; |
michael@0 | 28 | white-space: pre; |
michael@0 | 29 | font-size: 100px; |
michael@0 | 30 | line-height: 1.9em; |
michael@0 | 31 | color: white; |
michael@0 | 32 | content: "a\a b\a c\a d\a"; |
michael@0 | 33 | border-bottom: 4px solid blue; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | #shift { |
michael@0 | 37 | height: 220px; |
michael@0 | 38 | border-top: 4px solid blue; |
michael@0 | 39 | position: relative; |
michael@0 | 40 | z-index: 1; |
michael@0 | 41 | } |
michael@0 | 42 | </style> |
michael@0 | 43 | </head> |
michael@0 | 44 | |
michael@0 | 45 | <body onload="document.getElementById('x').insertBefore(document.createTextNode('This must be in the second column between two 4px blue lines.'), document.getElementById('shift'))"> |
michael@0 | 46 | |
michael@0 | 47 | <div id="colset"> |
michael@0 | 48 | <div id="x"><div id="shift"></div></div> |
michael@0 | 49 | </div> |
michael@0 | 50 | |
michael@0 | 51 | </body> |
michael@0 | 52 | |
michael@0 | 53 | </html> |