inherited-css-tentative.html (491B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <link rel="match" href="inherited-css-ref.html"> 4 <link rel="help" href="https://github.com/WICG/PEPC/blob/main/explainer.md#locking-the-pepc-style"> 5 <!-- The geolocation element not inherit css properties from the parent div. 6 --> 7 <body> 8 <style> 9 div { 10 text-emphasis: "x"; 11 text-emphasis-position: over right; 12 text-shadow: 1px 1px 2px black; 13 } 14 </style> 15 <div> 16 <geolocation></geolocation> 17 </div> 18 </body> 19 </html>