| Index: LayoutTests/fast/html/imports/sub-imports.html
|
| diff --git a/LayoutTests/fast/html/imports/sub-imports.html b/LayoutTests/fast/html/imports/sub-imports.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fe9782d72b4413bbd70467f87bc3c729e8402a1e
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/html/imports/sub-imports.html
|
| @@ -0,0 +1,19 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<script src="../../js/resources/js-test-pre.js"></script>
|
| +<link id="root" rel="import" href="resources/root.html">
|
| +</head>
|
| +<body>
|
| +<script>
|
| +shouldBe("root.import.querySelector('h1').innerHTML", "'Root'");
|
| +
|
| +hello = root.import.querySelector('#hello');
|
| +shouldBe("hello.import.querySelector('h1').innerHTML", "'Hello'");
|
| +bye = root.import.querySelector('#bye');
|
| +shouldBe("bye.import.querySelector('h1').innerHTML", "'Bye'");
|
| +
|
| +</script>
|
| +<script src="../../js/resources/js-test-post.js"></script>
|
| +</body>
|
| +</html>
|
|
|