diff options
| author | Adam Zapletal <adamzap@gmail.com> | 2024-02-23 22:36:15 -0600 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-02-28 06:24:24 +0100 |
| commit | 107aa76bcf5d5599460fdce61dfa15bb147acc62 (patch) | |
| tree | 2c84920ff7630a1914698e3e65ef9a1c42b2ecca /tests/staticfiles_tests/project | |
| parent | ef2434f8508551fee183079ab471b1dc325c7acb (diff) | |
Fixed #29022 -- Fixed handling protocol-relative URLs in ManifestStaticFilesStorage when STATIC_URL is set to /.
Diffstat (limited to 'tests/staticfiles_tests/project')
| -rw-r--r-- | tests/staticfiles_tests/project/static_url_slash/ignored.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/static_url_slash/ignored.css b/tests/staticfiles_tests/project/static_url_slash/ignored.css new file mode 100644 index 0000000000..369ff04632 --- /dev/null +++ b/tests/staticfiles_tests/project/static_url_slash/ignored.css @@ -0,0 +1,3 @@ +body { + background: url("//foobar"); +} |
