summaryrefslogtreecommitdiffstats
path: root/dom/html/test/imports/file_cycle_1_C.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/html/test/imports/file_cycle_1_C.html')
-rw-r--r--dom/html/test/imports/file_cycle_1_C.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/html/test/imports/file_cycle_1_C.html b/dom/html/test/imports/file_cycle_1_C.html
new file mode 100644
index 000000000..0c563c6ce
--- /dev/null
+++ b/dom/html/test/imports/file_cycle_1_C.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="en-US">
+<head>
+ <link rel="import" href="file_cycle_1_B.html" onload="loaded()" onerror="failed()"></link>
+ <link rel="import" href="file_cycle_1_A.html" onload="loaded()" onerror="failed()"></link>
+</head>
+<body>
+ <script>
+ order.push("C");
+ </script>
+</body>
+</html>