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

Side by Side Diff: LayoutTests/fast/html/imports/import-cycle-grandparent.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
« no previous file with comments | « no previous file | LayoutTests/fast/html/imports/import-cycle-grandparent-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-grandparent-c.html', 'cycle-grandparent-b.ht ml', 'cycle-grandparent-a.html'], importedDocumentList);
12 t.done();
13 });
14 });
15 </script>
16 </head>
17 <body>
18 <link rel="import" href="resources/cycle-grandparent-a.html">
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/html/imports/import-cycle-grandparent-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698