mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-14 14:02:47 +00:00
Bug 1061469 - part10: Removing intermittent import test. r=mrbkap
This commit is contained in:
parent
f8a4837fc8
commit
7fc241ad16
@ -1,13 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<link rel="import" href="file_cycle_5_B.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_D.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_C.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
order.push("A");
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,13 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<link rel="import" href="file_cycle_5_A.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_C.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_D.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
order.push("B");
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,13 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<link rel="import" href="file_cycle_5_A.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_B.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_D.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
order.push("C");
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,13 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<link rel="import" href="file_cycle_5_A.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_B.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_C.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
order.push("D");
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -31,10 +31,6 @@ support-files =
|
|||||||
file_cycle_4_C.html
|
file_cycle_4_C.html
|
||||||
file_cycle_4_D.html
|
file_cycle_4_D.html
|
||||||
file_cycle_4_E.html
|
file_cycle_4_E.html
|
||||||
file_cycle_5_A.html
|
|
||||||
file_cycle_5_B.html
|
|
||||||
file_cycle_5_C.html
|
|
||||||
file_cycle_5_D.html
|
|
||||||
file_encoding.html
|
file_encoding.html
|
||||||
file_simple_import.html
|
file_simple_import.html
|
||||||
|
|
||||||
@ -46,7 +42,5 @@ skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
|||||||
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
||||||
[test_cycle_4.html]
|
[test_cycle_4.html]
|
||||||
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
||||||
[test_cycle_5.html]
|
|
||||||
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
|
||||||
[test_encoding.html]
|
[test_encoding.html]
|
||||||
[test_defaultView.html]
|
[test_defaultView.html]
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
<!DOCTYPE HTML>
|
|
||||||
<html>
|
|
||||||
<!--
|
|
||||||
https://bugzilla.mozilla.org/show_bug.cgi?id=1061469
|
|
||||||
-->
|
|
||||||
<head>
|
|
||||||
<title>Test for Bug 1061469</title>
|
|
||||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
||||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1061469">Mozilla Bug 1061469</a>
|
|
||||||
<script type="text/javascript">
|
|
||||||
SimpleTest.waitForExplicitFinish();
|
|
||||||
var counter = 0;
|
|
||||||
var fcounter = 0;
|
|
||||||
var order = [];
|
|
||||||
function loaded() {
|
|
||||||
counter++;
|
|
||||||
}
|
|
||||||
function failed() {
|
|
||||||
fcounter++;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<link rel="import" href="file_cycle_5_A.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<link rel="import" href="file_cycle_5_C.html" onload="loaded()" onerror="failed()"></link>
|
|
||||||
<script type="text/javascript">
|
|
||||||
is(counter, 14, "Imports are loaded");
|
|
||||||
is(fcounter, 0, "No error in imports");
|
|
||||||
var expected = ["D","C","B","A"];
|
|
||||||
for (i in expected)
|
|
||||||
is(order[i], expected[i], "import " + i + " should be " + expected[i]);
|
|
||||||
SimpleTest.finish();
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
x
Reference in New Issue
Block a user