OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 | 4 |
5 <p>Fallback elements should be rendered if it's distributed</p> | 5 <p>Fallback elements for content insertion points should be rendered</p> |
6 | 6 |
7 <div id="host1"> | 7 <div id="host1"> |
8 <div id="host2"> | 8 <div id="host2"> |
9 <div id="host3"> | 9 <div id="host3"> |
10 <div>content fallback element</div> | 10 <div>content fallback element</div> |
11 <div>shadow fallback element</div> | |
12 <div>This should be selected.</div> | 11 <div>This should be selected.</div> |
13 <div>content fallback element</div> | 12 <div>content fallback element</div> |
14 <div>This also should be selected.</div> | 13 <div>This also should be selected.</div> |
15 </div> | 14 </div> |
16 </div> | 15 </div> |
17 </div> | 16 </div> |
18 | 17 |
19 </html> | 18 </html> |
20 | |
21 | |
OLD | NEW |