layout/reftests/bugs/412679-1-ref.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

michael@0 1 <!DOCTYPE html>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title></title>
michael@0 5 <style>
michael@0 6 #red {
michael@0 7 position: fixed;
michael@0 8 background-color: blue;
michael@0 9 top: 10px;
michael@0 10 left: 10px;
michael@0 11 }
michael@0 12
michael@0 13 #green {
michael@0 14 position: fixed;
michael@0 15 background-color: blue;
michael@0 16 top: 10px;
michael@0 17 width: 80px;
michael@0 18 right: 10px;
michael@0 19 }
michael@0 20
michael@0 21 #blue {
michael@0 22 position: fixed;
michael@0 23 background-color: blue;
michael@0 24 left: 10px;
michael@0 25 height: 80px;
michael@0 26 bottom: 10px;
michael@0 27 }
michael@0 28
michael@0 29 #yellow {
michael@0 30 position: fixed;
michael@0 31 background-color: blue;
michael@0 32 right: 10px;
michael@0 33 width: 80px;
michael@0 34 height: 80px;
michael@0 35 bottom: 10px;
michael@0 36 }
michael@0 37
michael@0 38 </style>
michael@0 39 <script>
michael@0 40
michael@0 41 </script>
michael@0 42 </head>
michael@0 43 <body>
michael@0 44
michael@0 45 <iframe id=red></iframe>
michael@0 46 <iframe id=green></iframe>
michael@0 47 <iframe id=blue></iframe>
michael@0 48 <iframe id=yellow></iframe>
michael@0 49
michael@0 50 </body>
michael@0 51 </html>

mercurial