summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-bundle/subresource-loading/relative-url-with-base.https.tentative.html
blob: 3c7e1a380c0e2c2f57310173ea42dc8d187f75b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<title>
  Subresource loading using relative URLs in the 'resources' attribute with a
  base element
</title>
<base href="../resources/wbn/" />
<link
  rel="help"
  href="https://github.com/WICG/webpackage/blob/main/explainers/subresource-loading.md"
/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<body>
  <script type="webbundle">
    {
      "source": "static-element.wbn",
      "resources": ["static-element/resources/script.js"]
    }
  </script>
  <script id="script" src="static-element/resources/script.js"></script>

  <script type="webbundle">
    {
      "source": "dynamic1.wbn",
      "scopes": ["dynamic/resource"]
    }
  </script>

  <script>
    setup(() => {
      assert_true(HTMLScriptElement.supports("webbundle"));
    });

    test(() => {
      assert_equals(resources_script_result, "loaded from webbundle");
    }, "A subresource script.js should be loaded from WebBundle using the relative " + "URL and a base element.");

    promise_test(async () => {
      const module = await import(
        "/web-bundle/resources/wbn/dynamic/resource1.js"
      );
      assert_equals(module.result, "resource1 from dynamic1.wbn");
      const module2 = await import(
        "/web-bundle/resources/wbn/dynamic/resource2.js"
      );
      assert_equals(module2.result, "resource2 from dynamic1.wbn");
      const module3 = await import(
        "/web-bundle/resources/wbn/dynamic/resource3.js"
      );
      assert_equals(module3.result, "resource3 from dynamic1.wbn");
      const module4 = await import(
        "/web-bundle/resources/wbn/dynamic/resource4.js"
      );
      assert_equals(module4.result, "resource4 from dynamic1.wbn");
      const result_promise = new Promise((resolve) => {
        // This function will be called from script.js
        window.report_result = resolve;
      });

      const script = document.createElement("script");
      script.src = "/web-bundle/resources/wbn/dynamic/classic_script.js";
      document.body.appendChild(script);
      assert_equals(await result_promise, "classic script from network");
    }, "Subresources that start with 'resource' should be loaded from dynamic1.wbn while others from network.");
  </script>
</body>