tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / rgb-float.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
3 <html lang="en">
4
5 <head profile="http://www.ietf.org/rfc/rfc2731.txt">
6
7 <title>CSS 2.1 Test Suite: RGB color syntax error handling</title>
8
9 <style type="text/css">
10 body {color: green;}
11 h1#floatnumnum {color: rgb(255.0, 0, 0);}
12 h1#numnumfloat {color: rgb(0, 0, 128.0);}
13 </style>
14 </head>
15
16 <body>
17 <h1 id="floatnumnum">This should be green, not red</h1>
18 <h1 id="numnumfloat">This should be green, not blue</h1>
19 </body></html>
20