blob: e9cfd006dc0bd5ffd3583f209d6ba86b424d0f3d [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: Effect of DOM mutations on :hover matching</title>
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#dynamic-pseudo-classes">
<script type="text/javascript">
function remove() {
var node = document.getElementById("target");
node.parentNode.removeChild(node);
}
</script>
<style>
div:hover { color: red; }
div#green { color: green; }
</style>
</head>
<body>
<div>
Dummy text. Dummy text.
<div onmouseover="setTimeout(remove, 1000)" id="target"><span>Hover this text,
then wait till it disappears. At that point there should be no red.</span>
</div>
</div>
<div id="green">
Dummy text. Dummy text.
</div>
</body>
</html>