haikuwebkit/LayoutTests/fast/css-generated-content/004.html

19 lines
301 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html lang="en">
<head>
<style>
p:before {
color: inherit;
content: 'This text should be green.';
}
</style>
</head>
<body style="color:red">
<p id="foo"></p>
<script>
document.getElementById('foo').style.color='green';
</script>
</body>
</html>