summaryrefslogtreecommitdiffstats
path: root/editor/reftests/642800-iframe.html
blob: bb1ab639759e1fe195b0f027f184f04302c688ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!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>