mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-16 22:04:36 +00:00
adding testcase for bug 337124 to mochitest not part of the build
This commit is contained in:
parent
7110864fed
commit
64db9c7d42
@ -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',
|
||||
|
33
testing/mochitest/tests/test_bug337124.html
Normal file
33
testing/mochitest/tests/test_bug337124.html
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user