mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
19 lines
626 B
HTML
19 lines
626 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>var test1_token = "script not executed";</script>
|
|
<script src="script-not-found-not-executed.py"></script>
|
|
<script>
|
|
test(function(){
|
|
assert_equals(test1_token, "script not executed");
|
|
}, "Script that 404");
|
|
</script>
|
|
<script>var test2_token = "script not executed";</script>
|
|
<script src="script-not-found-not-executed-2.py"></script>
|
|
<script>
|
|
test(function(){
|
|
assert_equals(test2_token, "script executed");
|
|
}, "Script that does not 404");
|
|
</script>
|