pseudo-elements-in-div-ref.html (396B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <body> 4 <div> 5 The geolocation element should not create any pseudo elements. 6 </div> 7 8 <style> 9 .inner::before { 10 content: 'BEFORE'; 11 } 12 .inner::after { 13 content: 'AFTER'; 14 } 15 </style> 16 17 <p>Should only see BEFOREAFTER once below</p> 18 19 <div> 20 <div class="inner"></div> 21 <geolocation></geolocation> 22 </div> 23 </body> 24 </html>