| 2 | | <color id="color" red="100" green="25" blue="10"/> |
|---|
| 3 | | <color id="color-no-atts"/> |
|---|
| 4 | | |
|---|
| 5 | | <!-- Use child tags for the constructor --> |
|---|
| 6 | | <color2> |
|---|
| 7 | | <red>111</red> |
|---|
| 8 | | <green>222</green> |
|---|
| 9 | | <blue>333</blue> |
|---|
| 10 | | </color2> |
|---|
| | 2 | <color id="color" red="100" green="25" blue="10"/> |
|---|
| | 3 | <color id="color-no-atts"/> |
|---|
| | 4 | |
|---|
| | 5 | <!-- Use child tags for the constructor --> |
|---|
| | 6 | <color2> |
|---|
| | 7 | <red>111</red> |
|---|
| | 8 | <green>222</green> |
|---|
| | 9 | <blue>333</blue> |
|---|
| | 10 | </color2> |
|---|
| | 11 | |
|---|
| | 12 | <!-- Use cdata tags for the constructor --> |
|---|
| | 13 | <color3>#999999</color3> |
|---|