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