blob: 217b76a1dd46ef2f6153de3efc63b73c9c8ff09e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<head>
<style>
div:not(.foo) { display: none; }
</style>
</head>
<body onload="document.getElementById('x').className = 'foo'">
<div id="x">This text should appear</div>
</body>
</html>
|