Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-borders/border-shape/border-shape-outline-auto.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Borders Test: outline auto follows border-shape</title>
<link rel="match" href="border-shape-outline-auto-ref.html">
<meta name="fuzzy" content="maxDifference=0-5;totalPixels=0-50">
<style>
body {
margin: 0;
}
.container {
padding: 20px;
}
.target {
width: 100px;
height: 100px;
background: lightblue;
border-shape: inset(0 round 50px);
outline: auto 4px blue;
}
</style>
<div class="container">
<div class="target" tabindex="0" id="target"></div>
</div>
<script>
document.getElementById('target').focus();
</script>