summaryrefslogtreecommitdiff
path: root/test/js/doc-write-style.html
blob: 642da0a3be49c628739ab87212c1a04462837694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<style>
p { color: red; background: #fdd; }
</style>
</head>
<body>
<script>
document.write('<style>p#foo { color: green; background: #dfd; }</style>');
</script>
<p id="foo">JS makes me green!</p>
</body>
</html>