summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests/project
diff options
context:
space:
mode:
Diffstat (limited to 'tests/staticfiles_tests/project')
-rw-r--r--tests/staticfiles_tests/project/documents/absolute_root.css1
-rw-r--r--tests/staticfiles_tests/project/documents/cached/absolute.css1
-rw-r--r--tests/staticfiles_tests/project/documents/styles_root.css1
3 files changed, 3 insertions, 0 deletions
diff --git a/tests/staticfiles_tests/project/documents/absolute_root.css b/tests/staticfiles_tests/project/documents/absolute_root.css
new file mode 100644
index 0000000000..b35ff47c9e
--- /dev/null
+++ b/tests/staticfiles_tests/project/documents/absolute_root.css
@@ -0,0 +1 @@
+@import url("/static/styles_root.css");
diff --git a/tests/staticfiles_tests/project/documents/cached/absolute.css b/tests/staticfiles_tests/project/documents/cached/absolute.css
index 03f2ae791a..6a2040b413 100644
--- a/tests/staticfiles_tests/project/documents/cached/absolute.css
+++ b/tests/staticfiles_tests/project/documents/cached/absolute.css
@@ -1,4 +1,5 @@
@import url("/static/cached/styles.css");
+@import url("/static/styles_root.css");
body {
background: #d3d6d8 url(/static/cached/img/relative.png);
}
diff --git a/tests/staticfiles_tests/project/documents/styles_root.css b/tests/staticfiles_tests/project/documents/styles_root.css
new file mode 100644
index 0000000000..64512630cb
--- /dev/null
+++ b/tests/staticfiles_tests/project/documents/styles_root.css
@@ -0,0 +1 @@
+/* see cached/absolute.css and absolute_root.css */