<!doctype html>
<style>
div::before {
content: "PASS";
display: none;
}
.foo::before {
</style>
<div></div>
<script>
window.onload = function() {
document.querySelector('div').className = "foo";
</script>