OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <h1>A shadow element with a content element</h1> | 4 <div>A shadow element with a content element</div> |
5 <div><div>before</div><div>host-child</div><div>after</div></div> | 5 <div>before host-child after</div> |
6 | 6 |
7 <h1>A shadow element without a content element</h1> | 7 <div>A shadow element without a content element</div> |
8 <div><div>before</div><div>host-child</div><div>after</div></div> | 8 <div>before host-child after</div> |
9 | 9 |
10 <h1>A shadow element with a parameter</h1> | 10 <div>A shadow element with a parameter</div> |
11 <div><div>before</div><div>shadow-child</div><div>after</div></div> | 11 <div> before host-child after</div> |
12 | 12 |
13 <h1>An inactive shadow element</h1> | 13 <div>An inactive shadow element</div> |
14 <div><div>before</div><div>host-child</div><div>middle</div><div>shadow-child<
/div><div>after</div></div> | 14 <div>before host-child middle<shadow> shadow-child</shadow> after</div> |
15 | 15 |
16 <h1>A shadow element comes before a content element</h1> | 16 <div>A shadow element comes before a content element</div> |
17 <div><div>before</div><div>host-child</div><div>middle</div><div>after</div></
div> | 17 <div> before middle host-child after</div> |
18 | 18 |
19 <h1>A shadow element comes after a content element</h1> | 19 <div>A shadow element comes after a content element</div> |
20 <div><div>before</div><div>host-child</div><div>middle</div><div>after</div></
div> | 20 <div>before host-child middle after</div> |
21 | 21 |
22 </body> | 22 </body> |
23 </html> | 23 </html> |
OLD | NEW |