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

Side by Side Diff: LayoutTests/http/tests/htmlimports/import-dynamic-descendant-block.html

Issue 265453003: HTML Imports: Let dynamically-added imports sync. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Landing. 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 </head>
7 <body>
8 <link id="parentOfDynamicChild" rel="import" href="resources/having-dynamic-chil d.html">
9 <script>
10 test(function() {
11 assert_true(null != parentOfDynamicChild.import, 'Parent of dynamic child');
12 assert_true(null != parentOfDynamicChild.import.querySelector('#dynamicLink') .import, 'Dynamically added child');
13 }, 'Dynamically added import in a descendant blocks.');
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698