Skip to content

Commit cccb640

Browse files
committed
Rename css-parser.js to match the new project name.
1 parent 541164f commit cccb640

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
background: #fafaf0;
4848
}
4949
</style>
50+
<script src="parse-css.js"></script>
5051
<script>
5152
var debug;
5253
function parseStuff() {
@@ -63,4 +64,3 @@
6364
tree.value = sheet.toString(' ');
6465
}
6566
</script>
66-
<script src="css-parser.js"></script>
File renamed without changes.

tests.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ var total = TESTS.length, failures = 0,
6161

6262
for (i = 0; i < total; i++) {
6363
test = TESTS[i];
64-
tokens = tokenize(test.css);
65-
sheet = parse(tokens);
64+
sheet = parseAStylesheet(test.css);
6665
dump = sheet.toString(' ');
6766
expected_dump = JSON.stringify(test.expected, null, ' ');
6867
if (dump == expected_dump) {

0 commit comments

Comments
 (0)