mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1061469 - Part 3: Cyclic test for Imports 2. r=mrbkap
This commit is contained in:
parent
a0aa5f53c7
commit
d43c2b4f13
11
content/html/content/test/imports/file_cycle_2_A.html
Normal file
11
content/html/content/test/imports/file_cycle_2_A.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<link rel="import" href="file_cycle_2_B.html" onload="loaded()" onerror="failed()"></link>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
order.push("A");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
13
content/html/content/test/imports/file_cycle_2_B.html
Normal file
13
content/html/content/test/imports/file_cycle_2_B.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<link rel="import" href="file_cycle_2_A.html" onload="loaded()" onerror="failed()"></link>
|
||||
<link rel="import" href="file_cycle_2_C.html" onload="loaded()" onerror="failed()"></link>
|
||||
<link rel="import" href="file_cycle_2_D.html" onload="loaded()" onerror="failed()"></link>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
order.push("B");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
10
content/html/content/test/imports/file_cycle_2_C.html
Normal file
10
content/html/content/test/imports/file_cycle_2_C.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
order.push("C");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
10
content/html/content/test/imports/file_cycle_2_D.html
Normal file
10
content/html/content/test/imports/file_cycle_2_D.html
Normal file
@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
order.push("D");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -19,6 +19,11 @@ support-files =
|
||||
file_cycle_1_A.html
|
||||
file_cycle_1_B.html
|
||||
file_cycle_1_C.html
|
||||
|
||||
file_cycle_2_A.html
|
||||
file_cycle_2_B.html
|
||||
file_cycle_2_C.html
|
||||
file_cycle_2_D.html
|
||||
[test_cycle_1.html]
|
||||
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
||||
[test_cycle_2.html]
|
||||
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
|
||||
|
36
content/html/content/test/imports/test_cycle_2.html
Normal file
36
content/html/content/test/imports/test_cycle_2.html
Normal file
@ -0,0 +1,36 @@
|
||||
<!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_2_A.html" onload="loaded()" onerror="failed()"></link>
|
||||
<script type="text/javascript">
|
||||
is(counter, 5, "Imports are loaded");
|
||||
is(fcounter, 0, "No error in imports");
|
||||
var expected = ["C","D","B","A"];
|
||||
for (i in expected)
|
||||
is(order[i], expected[i], "import " + i + " should be " + expected[i]);
|
||||
SimpleTest.finish();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user