pseudo-elements.tentative.html (462B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <link rel="match" href="pseudo-elements-ref.html"> 4 <link rel="help" href="https://github.com/WICG/PEPC/blob/main/explainer.md#locking-the-pepc-style"> 5 <body> 6 <div> 7 The geolocation element should not create any pseudo elements. 8 </div> 9 10 <style> 11 geolocation::before, geolocation::after { content: "FAIL"; } 12 </style> 13 14 <p>You should not see the word FAIL below.</p> 15 16 <geolocation></geolocation> 17 </body> 18 </html>