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">
<!-- The permission 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>
<permission type="camera"></permission>
</div>
</body>
</html>