Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t040306-c63-color-00-b-ag.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: Color Units</title>
5   <style type="text/css">
6    body {color: blue;}
7    span {vertical-align: bottom; font: 15px/1 Ahem;}
8    img {vertical-align: bottom; color: red;}
9    .one {color: #0f0;}
10    .two {color: #00ff00;}
11    .three {color: rgb(0,255,0);}
12    .four {color: rgb(0%,100%,0%);}
13    .five {color: rgb(0.0%,100.0%,0.0%);}
14    .six {color: lime;}
15    .seven {color: invalidValue;}
16    .eight {color: rgb(1280,165,0);}
17    .nine {color: rgb(255,165,0);}
18    .ten {color: rgb(100%,64.7%,-500%);}
19    .eleven {color: rgb(100%,64.7%,0%);}
20   </style>
21   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#color-units" title="4.3.6 Colors">
22  </head>
23  <body>
24   <p>There should be three solid bars of colour below, each longer than the last, each of the colour specified.</p>
25   <div>
26    Blue: <span>X</span><span class="seven">X</span><img alt="FAIL" src="support/swatch-blue.png">
27   </div>
28   <div>
29    Orange: <span class="eight">X</span><span class="nine">X</span><span class="ten">X</span><span class="eleven">X</span><img alt="FAIL" src="support/swatch-orange.png">
30   </div>
31   <div>
32    Lime: <span class="one">X</span><span class="two">X</span><span class="three">X</span><span class="four">X</span><span class="five">X</span><span class="six">X</span><span style="color: #0f0;">X</span><span style="color: #00ff00;">X</span><span style="color: rgb(0,255,0);">X</span><span style="color: rgb(0%,100%,0%);">X</span><span style="color: rgb(0.0%,100.0%,0.0%);">X</span><span style="color: lime;">X</span><img alt="FAIL" src="support/swatch-lime.png">
33   </div>
34  </body>
35 </html>