Skip to content

Commit 34429f4

Browse files
committed
fixtures: add nested @import rules
1 parent 55319cb commit 34429f4

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

test/fixtures/assets/import.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import "import2.css";
2+
3+
body {
4+
color: orange;
5+
}

test/fixtures/assets/import2.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background: red;
3+
}

test/fixtures/import.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width">
77
<title>Test HTML Page</title>
88
<style type="text/css">
9-
@import url("assets/style.css");
9+
@import url("assets/import.css");
1010
</style>
1111
</head>
1212
<body>

0 commit comments

Comments
 (0)