upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / fast / css / many-spaces-before-charset.html
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script>
5 if (window.layoutTestController)
6     layoutTestController.dumpAsText();
7
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;
12 }
13 </script>
14 <style>
15     @charset "utf-8";
16 .green {
17   background-color: green;
18 }
19 </style>
20 </head>
21 <body>
22 <div id="probe" class="green">
23 I should have a green background.
24 </div>
25 <div id="results"></div>
26 </html>