I’ve just found an issue that is happening in Chrome and Adobe Air which uses webkit also.
On FF4 beta 7 the behavior of the border-radius is correct which limits the hit box of the link to the area of the rounded box, and what webkit does in my tests is that the hit area is still square disregarding the form created, is there a work around for this in webkit?
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
<style type="text/css">
#app{
padding: 20px;
}
#btn-play{
-webkit-border-radius: 50px;
-webkit-background-clip: padding-box;
border-radius: 50px;
background-color: #aeaeae;
display: block;
height: 100px;
line-height: 100px;
text-align: center;
width: 100px;
}
</style>
</head>
<body>
<div id="app">
<a href="#" id="btn-play">Play</a>
</div>
</body>
</html>