shadow-root-002-ref.html (480B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Shadow DOM Test: Basic distribution (reference)</title> 5 <link rel="author" title="Anna Ogawa" href="mailto:anna.ogawa.0219@gmail.com"> 6 <link rel="author" title="Yuta Kitamura" href="mailto:yutak@google.com"> 7 <style> 8 p { color: black; } 9 div { color: green; } 10 </style> 11 </head> 12 <body> 13 <p> 14 You should see four lines of green text "A", "B", "C" and "D" below, 15 in this order. 16 </p> 17 <div>A</div> 18 <div>B</div> 19 <div>C</div> 20 <div>D</div> 21 </body> 22 </html>