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

Side by Side Diff: LayoutTests/http/tests/htmlimports/import-normalize-213.html

Issue 274213003: HTML Imports: Make sure new imports being added to the "first child" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ready to review 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="resources/normalize-test-helper.js"></script>
7 <link rel="import" href="resources/normalize-child-2.html">
8 <link rel="import" href="resources/normalize-child-1.cgi">
9 <link rel="import" href="resources/normalize-child-3.html">
10 </head>
11 <body>
12 <script>
13 test(function() {
14 assert_array_equals(importedDocumentList, ['normalize-child-4.html', 'normal ize-child-3.html', 'normalize-child-2.html', 'normalize-child-1.cgi']);
15 }, 'Imports are evaluated in dependency order regardeless of the availability or der.');
16 </script>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698