1331272.html (246B)
1 <!doctype html> 2 <style> 3 div::before { 4 content: "PASS"; 5 display: none; 6 } 7 .foo::before { 8 display: none; 9 } 10 </style> 11 <div></div> 12 <script> 13 window.onload = function() { 14 document.querySelector('div').className = "foo"; 15 } 16 </script>