summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/html/imports/import-cycle-two-parents-3.html
blob: 648a19dbed223f3025a41385a9b1244c82d35b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../../http/tests/htmlimports/resources/normalize-test-helper.js"></script>
<script>
var t = async_test('Imports with cycle complete loading in a defined order.');
window.addEventListener('load', function() {
    t.step(function() {
        assert_array_equals(['cycle-two-parents-3-b.html', 'cycle-two-parents-3-c.html', 'cycle-two-parents-3-a.html'], importedDocumentList);
        t.done();
    });
});
</script>
</head>
<body>
<link rel="import" href="resources/cycle-two-parents-3-a.html">
<link rel="import" href="resources/cycle-two-parents-3-b.html">
</body>
</html>