blob: 849ac25d9bd328384e0d642ddc85df76e71552f0 [file] [log] [blame]
hyatt@apple.com1b4184a2008-07-14 22:10:10 +00001<html>
2<head>
3<style>
4div { background-color: red; width: 100px; height: 100px }
5</style>
6</head>
7<body>
8You should see a 100x100 green square below. If you see any red then the test has failed.
9<div></div>
10<script>
11var s = document.createElement("style");
12var t = document.createTextNode("div { background-color: green }");
13s.appendChild(t);
14document.body.appendChild(s);
15</script>
16</body>
17</html>