summaryrefslogtreecommitdiffstats
path: root/tdehtml/test/color.html
blob: ff56172147b71c28cf839305ae56cc9381700045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<HTML>
<HEAD>
   <TITLE>Color Test 1</TITLE>
</HEAD>
<BODY>
<H1>Color Test 1</H1>
This page contains regression tests for the parsing of colors.
Each test consist of a table with a colored background. 
Within the table the name of the color is written in black text.
<HR>
<TABLE width = 150>
<tr><td bgcolor="#0000ff">
Blue (#0000ff)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="0000ff">
Blue (0000ff)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="blue">
Blue (blue)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="BLUE">
Blue (BLUE)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="#ffff00">
Yellow (#ffff00)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="ffff00">
Yellow (ffff00)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="yellow">
Yellow (yellow)
</td></tr>
</TABLE>
<HR>
<TABLE width = 150>
<tr><td bgcolor="teal">
Teal (teal)
</td></tr>
</TABLE>
<HR>
</body>
</html>