summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/fetch-src/alpha/base.html
blob: dc0fa9dabb7be4bbce4dcf2d48e28765fcca9fcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<meta charset=utf-8>
<title>Script src with a base URL</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<base href=../beta/>
<div id=log></div>
<script>
function do_test(path) {
  test(function() {
    assert_equals(path, "beta");
  });
}
</script>
<script src=test.js></script>