Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / rgb-float.html
blob8e91e1a906777e6583fc450e4bc034fe6a1f12c3
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
3 <html lang="en">
5 <head profile="http://www.ietf.org/rfc/rfc2731.txt">
7 <title>CSS 2.1 Test Suite: RGB color syntax error handling</title>
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>
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>