layout/reftests/pagination/content-inserted-001.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

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 Appended in Paginated Element</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 border: 3px solid silver;
michael@0 17 }
michael@0 18
michael@0 19 #x {
michael@0 20 height: 500px;
michael@0 21 }
michael@0 22 </style>
michael@0 23 </head>
michael@0 24
michael@0 25 <body onload="document.getElementById('x').appendChild(document.createTextNode('This must be in the first column.'))">
michael@0 26
michael@0 27 <div id="colset">
michael@0 28 <div id="x"></div>
michael@0 29 </div>
michael@0 30
michael@0 31 </body>
michael@0 32
michael@0 33 </html>

mercurial