1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/bugs/825999.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,83 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <head> 1.7 + <title>Testcase for bug 825999</title> 1.8 + <meta charset="utf-8"> 1.9 + <style> 1.10 + html,body { 1.11 + color:black; background-color:white; font-family: monospace; font-size:16px; padding:4px; margin:0; 1.12 + } 1.13 + 1.14 + button,p,select,span,table,object { 1.15 + width: 14px; 1.16 + text-indent: 20px; 1.17 + overflow: hidden; 1.18 + padding-left:6px; 1.19 + padding-right:17px; 1.20 + outline: 1px solid blue; 1.21 + } 1.22 + span { 1.23 + display:inline-block; 1.24 + overflow: hidden; 1.25 + outline:none; 1.26 + } 1.27 + x { 1.28 + display:block; 1.29 + overflow:auto; 1.30 + height:3em; 1.31 + padding:1px; 1.32 + vertical-align:top; 1.33 + background:lime; 1.34 + width:36px; 1.35 + } 1.36 + .bb * { 1.37 + box-sizing: border-box; 1.38 + } 1.39 + .cb * { 1.40 + box-sizing: content-box; 1.41 + } 1.42 + td { 1.43 + max-width:14px; 1.44 + } 1.45 + .bc { 1.46 + border-collapse:collapse; 1.47 + } 1.48 + .it { 1.49 + display:inline-table; 1.50 + } 1.51 + object { height:3em; } 1.52 + </style> 1.53 + </head> 1.54 + <body> 1.55 + <div class="bb"> 1.56 + <p>testing</p> 1.57 + <x><span>testing</span></x> 1.58 + <button>testing</button> 1.59 + <select size=1><option>testing</select> 1.60 + <select size=3><option>testing<option>testing<option>testing</select> 1.61 + <object type="text/html" data="data:text/html,testing"></object> 1.62 + <table><tr><td>testing</td></tr></table> 1.63 + <table class="bc"><tr><td>testing</td></tr></table> 1.64 + <table class="it"><tr><td>testing</td></tr></table> 1.65 + <table class="bc it"><tr><td>testing</td></tr></table> 1.66 + <table style="overflow:visible"><tbody style="overflow:hidden"><tr><td>testing</td></tr></table> 1.67 + <table style="overflow:visible"><tbody><tr style="overflow:hidden"><td>testing</td></tr></table> 1.68 + <table style="overflow:visible"><tbody><tr><td style="overflow:hidden">testing</td></tr></table> 1.69 + </div> 1.70 + <div class="cb"> 1.71 + <p>testing</p> 1.72 + <x><span>testing</span></x> 1.73 + <button>testing</button> 1.74 + <select size=1><option>testing</select> 1.75 + <select size=3><option>testing<option>testing<option>testing</select> 1.76 + <object type="text/html" data="data:text/html,testing"></object> 1.77 + <table><tr><td>testing</td></tr></table> 1.78 + <table class="bc"><tr><td>testing</td></tr></table> 1.79 + <table class="it"><tr><td>testing</td></tr></table> 1.80 + <table class="bc it"><tr><td>testing</td></tr></table> 1.81 + <table style="overflow:visible"><tbody style="overflow:hidden"><tr><td>testing</td></tr></table> 1.82 + <table style="overflow:visible"><tbody><tr style="overflow:hidden"><td>testing</td></tr></table> 1.83 + <table style="overflow:visible"><tbody><tr><td style="overflow:hidden">testing</td></tr></table> 1.84 + </div> 1.85 + </body> 1.86 +</html>