test_bug522632.html (842B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- 4 https://bugzilla.mozilla.org/show_bug.cgi?id=522632 5 --> 6 <head> 7 <title>Test for Bug 522632</title> 8 <script src="/tests/SimpleTest/SimpleTest.js"></script> 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> 10 </head> 11 <body> 12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=522632">Mozilla Bug 522632</a> 13 <p id="display"></p> 14 <div id="content"> 15 <table border="1"> 16 <tr> 17 <td style="height: 200px; padding: 0; margin: 0; border: none"> 18 <div style="height: 0; min-height: 50%" id="foo"></div> 19 </td> 20 <tr> 21 </table> 22 </div> 23 <pre id="test"> 24 <script type="application/javascript"> 25 26 /** Test for Bug 522632 */ 27 is(document.defaultView.getComputedStyle($("foo")).height, "100px", 28 "Unexpected computed height"); 29 </script> 30 </pre> 31 </body> 32 </html>