| Index: LayoutTests/fast/html/imports/import-cycle-parent-child-1.html | 
| diff --git a/LayoutTests/fast/html/imports/import-cycle-parent-child-1.html b/LayoutTests/fast/html/imports/import-cycle-parent-child-1.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..e511d46b8206c5bf7c4894c43e16ffa017500265 | 
| --- /dev/null | 
| +++ b/LayoutTests/fast/html/imports/import-cycle-parent-child-1.html | 
| @@ -0,0 +1,20 @@ | 
| +<!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-parent-child-1-c.html', 'cycle-parent-child-1-d.html', 'cycle-parent-child-1-b.html', 'cycle-parent-child-1-a.html'], importedDocumentList); | 
| +        t.done(); | 
| +    }); | 
| +}); | 
| +</script> | 
| +</head> | 
| +<body> | 
| +<link rel="import" href="resources/cycle-parent-child-1-a.html"> | 
| +</body> | 
| +</html> | 
|  |