| <!doctype html> |
| <html> |
| <body> |
| <p>This test verify basic styling using the doubled-child descendant combinator (">>"). Each text should be styled as described.</p> |
| <target style="background-color: lime;">Lime background.</target> |
| <ul> |
| <li>Nothing special - <target style="background-color: lime;">Lime background.</target></li> |
| <li style="border: 1px solid red;">Red border.</li> |
| <li style="border: 2px solid purple;">Purple border.</li> |
| </ul> |
| <ul> |
| <li>Nothing special - <target style="background-color: lime;">Lime background.</target></li> |
| <li style="border: 1px solid red;">Red border.</li> |
| <li style="border: 1px solid red;">Red border.</li> |
| </ul> |
| <foo> |
| <bar style="border: 2px solid green; background-color: yellow;"> |
| Yellow background and green border. |
| </bar> |
| </foo> |
| </body> |
| </html> |