mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
26 lines
420 B
HTML
26 lines
420 B
HTML
<html><head><title>Double tap on iframe causes overflow area at bottom to appear permanently</title>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
iframe {
|
|
border: 10px dashed blue;
|
|
border-radius: 50px;
|
|
width: 600px;
|
|
height: 300px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
</head><body style="background: green;">
|
|
|
|
<iframe></iframe>
|
|
<br>
|
|
|
|
|
|
|
|
|
|
<div style="position: absolute; left: 140%; top: 110%;">
|
|
|
|
<iframe></iframe>
|
|
|
|
</div>
|
|
</body></html>
|