Absolute position test
Android stock browser check
by Anton_Diaz
HTML
<div class="c1">Test failed</div>
<div class="c2">Success</div>
CSS
DIV {
position: absolute;
left: 30px;
top: 30px;
width: 150px;
padding: 60px 0;
text-align: center;
}
.c1 {
background: #ffc0c0;
border: 1px solid #ff8080;
}
.c2 {
background: #c0ffc0;
border: 1px solid #80ff80;
}