OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <script src="../../js/resources/js-test-pre.js"></script> | 3 <script src="../../js/resources/js-test-pre.js"></script> |
4 <head> | 4 <head> |
5 <link id="target1" rel="import" href="resources/hello.html"> | 5 <link id="target1" rel="import" href="resources/hello.html"> |
6 <link id="target2" rel="import" href="resources/hello.html"> | 6 <link id="target2" rel="import" href="resources/hello.html"> |
| 7 <link id="target3" rel="import" href="resources/hello.html#fragment"> |
7 </head> | 8 </head> |
8 <body> | 9 <body> |
9 <script> | 10 <script> |
10 shouldBeNonNull("target1.import"); | 11 shouldBeNonNull("target1.import"); |
11 shouldBe("target1.import", "target2.import"); | 12 shouldBe("target1.import", "target2.import"); |
| 13 shouldBe("target1.import", "target3.import"); |
12 </script> | 14 </script> |
13 <script src="../../js/resources/js-test-post.js"></script> | 15 <script src="../../js/resources/js-test-post.js"></script> |
14 </body> | 16 </body> |
15 </html> | 17 </html> |
OLD | NEW |