mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 614474 - ERROR TEST-UNEXPECTED-FAIL | /tests/dom/indexedDB/test/test_bfcache.html | Test timed out; (Cv1) Disable this test on (all) Windows 2003 as a workaround.
r=jonas a=(test only).
This commit is contained in:
parent
5b511cacce
commit
9755023488
@ -9,6 +9,19 @@
|
||||
<script type="text/javascript" src="/MochiKit/packed.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
<script type="text/javascript">
|
||||
function _runTest() {
|
||||
// Work around Win2k3 debug tinderboxes that may be too slow to complete this test. (Bug 614474)
|
||||
if (navigator.oscpu == "Windows NT 5.2") {
|
||||
todo(false, "Test disabled on (too slow debug) Windows 2003 (tinderboxes)");
|
||||
|
||||
finishTest();
|
||||
return;
|
||||
}
|
||||
|
||||
runTest();
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript;version=1.7">
|
||||
var gOrigMaxTotalViewers = undefined;
|
||||
function setCachePref(enabled) {
|
||||
@ -58,7 +71,7 @@
|
||||
|
||||
</head>
|
||||
|
||||
<body onload="runTest();">
|
||||
<body onload="_runTest();">
|
||||
<iframe id="iframe"></iframe>
|
||||
</body>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user