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