Skip to content

Commit

Permalink
Rename css-parser.js to match the new project name.
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed Jul 25, 2014
1 parent 541164f commit cccb640
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
background: #fafaf0;
}
</style>
<script src="parse-css.js"></script>
<script>
var debug;
function parseStuff() {
Expand All @@ -63,4 +64,3 @@
tree.value = sheet.toString(' ');
}
</script>
<script src="css-parser.js"></script>
File renamed without changes.
3 changes: 1 addition & 2 deletions tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ var total = TESTS.length, failures = 0,

for (i = 0; i < total; i++) {
test = TESTS[i];
tokens = tokenize(test.css);
sheet = parse(tokens);
sheet = parseAStylesheet(test.css);
dump = sheet.toString(' ');
expected_dump = JSON.stringify(test.expected, null, ' ');
if (dump == expected_dump) {
Expand Down

0 comments on commit cccb640

Please sign in to comment.