mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 08:12:05 +00:00
ca89009775
I thought we didn't support outline-offset on auto-style outline. The rect we get is already inflated, so we just got to compute the radius using that. Differential Revision: https://phabricator.services.mozilla.com/D105125
13 lines
169 B
HTML
13 lines
169 B
HTML
<!doctype html>
|
|
<style>
|
|
body { margin: 0 }
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px transparent;
|
|
outline: 1px auto;
|
|
margin: 10px;
|
|
}
|
|
</style>
|
|
<div></div>
|