Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/fieldset-inset-shadow.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>inset box shadow works on fieldset</title>
<link rel=author title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel=match href="fieldset-inset-shadow-ref.html">
<style>
fieldset {
width: 100px;
height: 100px;
border: none;
margin: 0;
box-sizing: border-box;
box-shadow: 0 0 0 10px inset black;
}
</style>
<fieldset></fieldset>