24 lines
884 B
HTML
24 lines
884 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
|
|
<!-- Helper Functions for getting ResourceID -->
|
|
<script src="../resources/get-resourceID.js"></script>
|
|
<!-- Responsible for testing Initiator Attribute -->
|
|
<script src="../resources/test-initiator.js"></script>
|
|
|
|
<!--Script Responsible for loading various other resources -->
|
|
<script src="../resources/loadingResources.js"></script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
<script>
|
|
promise_test(async (t) => {
|
|
const expectedInitiator = await getResourceID("loadingResources.js");
|
|
const resources = ["empty_style.css", "blue.png", "green.html", "empty.js"];
|
|
for (const resource of resources) {
|
|
await testResourceInitiator(resource, expectedInitiator);
|
|
}
|
|
}, "Ensure initiator Attribute matches with Script ResourceID");
|
|
</script>
|