Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!doctype html>
<title>Empty url shouldn't try to load a subresource.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
@import url();
@import url('');
@import url("");
</style>
<div style="background-image: url()"></div>
<div style="background-image: url('')"></div>
<div style='background-image: url("")'></div>
<script>
let t = async_test("Empty url shouldn't try to load a subresource.");
onload = t.step_func_done(function() {
for (let entry of performance.getEntriesByType("resource")) {
assert_not_equals(entry.name, location.href, "Shouldn't have tried to request ourselves as a subresource")
}
});
</script>