Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / css / comment-before-charset-external.html
blobc55c9216052a14380251dac53dbc0a2c61bc3049
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script>
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
8 window.onload = function() {
9 var elmt = document.getElementById("probe");
10 var color = window.getComputedStyle(elmt, null).getPropertyValue("background-color");
11 document.getElementById("results").innerHTML= color;
13 </script>
14 <link rel="stylesheet" href="resources/comment-before-charset.css" />
15 </head>
16 <body>
17 <div id="probe" class="green">
18 I should have a green background.
19 </div>
20 <div id="results"></div>
21 </html>