Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: LayoutTests/fast/html/imports/import-cycle-parent-child-1.html

Issue 289993004: HTML Imports: Take care of cycles according to the spec. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/testharness.js"></script>
5 <script src="../../../resources/testharnessreport.js"></script>
6 <script src="../../../http/tests/htmlimports/resources/normalize-test-helper.js" ></script>
7 <script>
8 var t = async_test('Imports with cycle complete loading in a defined order.');
9 window.addEventListener('load', function() {
10 t.step(function() {
11 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'], import edDocumentList);
12 t.done();
13 });
14 });
15 </script>
16 </head>
17 <body>
18 <link rel="import" href="resources/cycle-parent-child-1-a.html">
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698