<!doctype html> | |
<html> | |
<head> | |
<title>This tests that outline-offset is applied properly on inline elements</title> | |
<style> | |
div { | |
width: 120px; | |
outline-offset: 50px; | |
outline: solid red 1px; | |
color: white; | |
font-family: ahem; | |
font-size: 20px; | |
} | |
</style> | |
<body> | |
<div>foobar</div> | |
</body> | |
</html> |