adding testcase for bug 337124 to mochitest not part of the build

This commit is contained in:
bmlk%gmx.de 2006-11-11 16:19:53 +00:00
parent 7110864fed
commit 64db9c7d42
2 changed files with 34 additions and 0 deletions

View File

@ -64,6 +64,7 @@ RunSet.runall = function() {
'test_bug237071.html',
'test_bug302186.html',
'test_bug308856.html',
'test_bug337124.html',
'test_bug337631.html',
'test_bug338541.xhtml',
'test_bug338679.html',

View File

@ -0,0 +1,33 @@
<html><head>
<title>Test for Bug 337124</title>
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=337124">Mozilla Bug 337124</a>
<span style="display: table-row-group;">
<input type="text">
</span>
<div style="display: table-column-group;">
<script>document.body.offsetHeight;</script>
</div><span style="display: table-row-group;">
<input id="i1" type="text">
</span><fieldset id="f1" style="display: table-column-group;">
</fieldset>
</fieldset>
<pre id="test">
<script class="testbody" type="text/javascript">
var passed = false;
if ( document.getElementById("f1").offsetTop > document.getElementById("i1").offsetTop) {
passed = true;
}
ok(passed, "right layout order");
</script>
</pre>
</body>
</html>