blob: 328970e9356f6833f20338d56f346657e1e99bdf [file] [log] [blame]
weinig2b1a2752006-07-04 22:14:49 +00001<html lang="en">
2<title>CSS 3.0 HSLA color support test</title>
3
4<style type="text/css">
5body {background-color:yellow;}
6h1#red {color: hsla(0, 100%, 50%, 0.5) }
weinig2a984d32007-07-31 17:58:46 +00007h1#red2 {color: hsla(0.0, 100%, 50%, 0.5) }
weinig2b1a2752006-07-04 22:14:49 +00008h1#green {color: hsla(120, 100%, 50%, 0.0) }
weinig2a984d32007-07-31 17:58:46 +00009h1#green2 {color: hsla(120.0, 100%, 50%, 0.0) }
weinig2b1a2752006-07-04 22:14:49 +000010h1#greensolid {color: hsla(120, 100%, 50%, 1.0) }
weinig2a984d32007-07-31 17:58:46 +000011h1#greensolid2 {color: hsla(120.0, 100%, 50%, 1.0) }
weinig2b1a2752006-07-04 22:14:49 +000012</style>
13</head>
14
15<body>
16<h1 id="red">This should be red, alpha 0.5</h1>
weinig2a984d32007-07-31 17:58:46 +000017<h1 id="red2">This should also be red, alpha 0.5</h1>
weinig2b1a2752006-07-04 22:14:49 +000018<h1 id="green">This should be green, alpha 0.0</h1>
weinig2a984d32007-07-31 17:58:46 +000019<h1 id="green2">This should also be green, alpha 0.0</h1>
weinig2b1a2752006-07-04 22:14:49 +000020<h1 id="greensolid">This should be green, alpha 1.0</h1>
weinig2a984d32007-07-31 17:58:46 +000021<h1 id="greensolid2">This should also be green, alpha 1.0</h1>
22</body>
23</html>