diff options
| author | Hielke Walinga <hielkewalinga@gmail.com> | 2023-04-17 14:30:10 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-04-21 05:42:06 +0200 |
| commit | fb535e0a9033bd58d4bcb31876508e895c9b866d (patch) | |
| tree | d0c98f5203fbddedb1bf125774aba451c532278d /tests/staticfiles_tests/project | |
| parent | 498195bda492d09ed00d05ab268cad4b8e5c9f21 (diff) | |
Fixed #34496 -- Fixed handling source maps with data URI in ManifestStaticFilesStorage.
Regression in 781b44240a06f0c868254f40f36ce46c927f56d1.
Diffstat (limited to 'tests/staticfiles_tests/project')
| -rw-r--r-- | tests/staticfiles_tests/project/documents/cached/source_map_data_uri.css | 2 | ||||
| -rw-r--r-- | tests/staticfiles_tests/project/documents/cached/source_map_data_uri.js | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/documents/cached/source_map_data_uri.css b/tests/staticfiles_tests/project/documents/cached/source_map_data_uri.css new file mode 100644 index 0000000000..7b6bc63241 --- /dev/null +++ b/tests/staticfiles_tests/project/documents/cached/source_map_data_uri.css @@ -0,0 +1,2 @@ +* {outline: 1px solid red;} +/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIl9zcmMv*/ diff --git a/tests/staticfiles_tests/project/documents/cached/source_map_data_uri.js b/tests/staticfiles_tests/project/documents/cached/source_map_data_uri.js new file mode 100644 index 0000000000..316fb1fecd --- /dev/null +++ b/tests/staticfiles_tests/project/documents/cached/source_map_data_uri.js @@ -0,0 +1,2 @@ +//# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIl9zcmMv +let a_variable = 1; |
