layout/reftests/bugs/825999-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>Testcase for bug 825999</title>
michael@0 5 <meta charset="utf-8">
michael@0 6 <style>
michael@0 7 html,body {
michael@0 8 color:black; background-color:white; font-family: monospace; font-size:16px; padding:4px; margin:0;
michael@0 9 }
michael@0 10
michael@0 11 button,p,select,span,table,object {
michael@0 12 width: 14px;
michael@0 13 text-indent: 20px;
michael@0 14 overflow: -moz-hidden-unscrollable;
michael@0 15 padding-left:6px;
michael@0 16 padding-right:17px;
michael@0 17 outline: 1px solid blue;
michael@0 18 }
michael@0 19 span {
michael@0 20 display:inline-block;
michael@0 21 overflow:visible;
michael@0 22 outline:none;
michael@0 23 }
michael@0 24 x {
michael@0 25 display:block;
michael@0 26 overflow:hidden;
michael@0 27 height:3em;
michael@0 28 padding:1px;
michael@0 29 vertical-align:top;
michael@0 30 background:lime;
michael@0 31 width:36px;
michael@0 32 }
michael@0 33 .bb * {
michael@0 34 box-sizing: border-box;
michael@0 35 }
michael@0 36 .cb * {
michael@0 37 box-sizing: content-box;
michael@0 38 }
michael@0 39 td {
michael@0 40 max-width:14px;
michael@0 41 }
michael@0 42 .bc {
michael@0 43 border-collapse:collapse;
michael@0 44 }
michael@0 45 .it {
michael@0 46 display:inline-table;
michael@0 47 }
michael@0 48 object { height:3em; }
michael@0 49 </style>
michael@0 50 </head>
michael@0 51 <body>
michael@0 52 <div class="bb">
michael@0 53 <p>testing</p>
michael@0 54 <x></x>
michael@0 55 <button>testing</button>
michael@0 56 <select size=1><option>testing</select>
michael@0 57 <select size=3><option>testing<option>testing<option>testing</select>
michael@0 58 <object type="text/html" data="data:text/html,testing"></object>
michael@0 59 <table><tr><td>testing</td></tr></table>
michael@0 60 <table class="bc"><tr><td>testing</td></tr></table>
michael@0 61 <table class="it"><tr><td>testing</td></tr></table>
michael@0 62 <table class="bc it"><tr><td>testing</td></tr></table>
michael@0 63 <table style="overflow:visible"><tbody style="overflow:hidden"><tr><td>testing</td></tr></table>
michael@0 64 <table style="overflow:visible"><tbody><tr style="overflow:hidden"><td>testing</td></tr></table>
michael@0 65 <table style="overflow:visible"><tbody><tr><td style="overflow:hidden">testing</td></tr></table>
michael@0 66 </div>
michael@0 67 <div class="cb">
michael@0 68 <p>testing</p>
michael@0 69 <x><span>testing</span></x>
michael@0 70 <button>testing</button>
michael@0 71 <select size=1><option>testing</select>
michael@0 72 <select size=3><option>testing<option>testing<option>testing</select>
michael@0 73 <object type="text/html" data="data:text/html,testing"></object>
michael@0 74 <table><tr><td>testing</td></tr></table>
michael@0 75 <table class="bc"><tr><td>testing</td></tr></table>
michael@0 76 <table class="it"><tr><td>testing</td></tr></table>
michael@0 77 <table class="bc it"><tr><td>testing</td></tr></table>
michael@0 78 <table style="overflow:visible"><tbody style="overflow:hidden"><tr><td>testing</td></tr></table>
michael@0 79 <table style="overflow:visible"><tbody><tr style="overflow:hidden"><td>testing</td></tr></table>
michael@0 80 <table style="overflow:visible"><tbody><tr><td style="overflow:hidden">testing</td></tr></table>
michael@0 81 </div>
michael@0 82 </body>
michael@0 83 </html>

mercurial