Files
UXP-Fixed/editor/reftests/642800-iframe.html
T
2018-02-02 04:16:08 -05:00

30 lines
644 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
@media only screen and (max-width: 480px) {
.overflow-hidden
{
overflow: hidden;
}
.float-left
{
float: left;
background: #f0f;
}
}
</style>
</head>
<body>
<h1>Iframe content</h1>
<div class="float-left">
<textarea>This text should be visible when window is resized </textarea>
</div>
<div class="overflow-hidden">
<textarea>This text should be visible when window is resized </textarea>
</div>
</body>
</html>