| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Shadow DOM Test: Basic distribution (reference)</title> | |
| <link rel="author" title="Anna Ogawa" href="mailto:[email protected]"> | |
| <link rel="author" title="Yuta Kitamura" href="mailto:[email protected]"> | |
| <style> | |
| p { color: black; } | |
| div { color: green; } | |
| </style> | |
| </head> | |
| <body> | |
| <p> | |
| You should see four lines of green text "A", "B", "C" and "D" below, | |
| in this order. | |
| </p> | |
| <div>A</div> | |
| <div>B</div> | |
| <div>C</div> | |
| <div>D</div> | |
| </body> | |
| </html> |