Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 1 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /css/css-images/empty-background-image.html - WPT Dashboard Interop Dashboard
<!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>