<!DOCTYPE html> | |
<html> | |
<head> | |
<title>This tests that we paint area outline properly when the image's container is scaled.</title> | |
<style> | |
img { | |
position: absolute; | |
top: 23px; | |
left: 25px; | |
} | |
div { | |
position: absolute; | |
top: 33px; | |
left: 35px; | |
width: 40px; | |
height: 40px; | |
outline: auto; | |
} | |
</style> | |
</head> | |
<body> | |
<img src="./resources/green.jpg" width=100 height=100> | |
<div></div> | |
</body> | |
</html> |