blob: 7d8b8c00c6fa4e241a5cf77e7323bfa32a7704fc [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ useFlexibleViewport=true ] -->
<html>
<head>
<meta name="viewport" content="initial-scale=0.5">
<style>
.fixed {
position: fixed;
height: 200px;
width: 400px;
top: 100px;
left: 10px;
background-color: silver;
}
input[type="text"] {
margin: 20px;
}
</style>
<script src="resources/zooming-test-utils.js"></script>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
function doTest()
{
testZoomAfterTap(document.getElementById('input'), 10, 10);
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div class="fixed">
<input id="input" type="text">
</div>
</body>
</html>