blob: 9dc84381b16612d76c6ff267e2ff5725c348a873 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<script src="../../../resources/js-test.js"></script>
<head>
<link id="toSuccess" rel="import" href="resources/hello.html">
<link id="toFail" rel="import" href="resources/no-such-file.html">
<link id="notImport" rel="stylesheet" href="resources/no-such-file.css">
</head>
<body>
<script>
shouldBe("toSuccess.import.querySelector('h1').innerHTML", "'Hello'");
shouldBeNonNull("toSuccess.import.querySelector('html')");
shouldBeNull("toFail.import");
shouldBeNull("notImport.import");
</script>
</body>
</html>
|