pseudo-elements.tentative.html (471B)
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 permission element should not create any pseudo elements. 8 </div> 9 10 <style> 11 permission::before, permission::after { content: "FAIL"; } 12 </style> 13 14 <p>You should not see the word FAIL below.</p> 15 16 <permission type="camera"></permission> 17 </body> 18 </html>