Skip to content

Commit

Permalink
Clean up tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Aug 21, 2021
1 parent e47f86b commit 7e5540b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
6 changes: 4 additions & 2 deletions test/cases/file-selector-button.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
::file-selector-button {
background: black
}

input::file-selector-button {
color: black
color: black;
}

input:hover::file-selector-button {
color: white
color: white;
}
13 changes: 9 additions & 4 deletions test/cases/file-selector-button.out.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
::-webkit-file-upload-button {
background: black
}

::file-selector-button {
background: black
}

input::-webkit-file-upload-button {
color: black
color: black;
}

input::file-selector-button {
color: black
color: black;
}

input:hover::-webkit-file-upload-button {
color: white
color: white;
}

input:hover::file-selector-button {
color: white
color: white;
}

0 comments on commit 7e5540b

Please sign in to comment.