Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/permission-element/inherited-css-tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset=utf-8>
<link rel="match" href="inherited-css-ref.html">
<link rel="help" href="https://github.com/WICG/PEPC/blob/main/explainer.md#locking-the-pepc-style">
<!-- The usermedia element not inherit css properties from the parent div.
-->
<body>
<style>
div {
text-emphasis: "x";
text-emphasis-position: over right;
text-shadow: 1px 1px 2px black;
}
</style>
<div>
<usermedia type="camera"></usermedia>
</div>
</body>
</html>