summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flex-hang.html
blob: a323244cd214e484be9d8489d03ecdfe7fede5b2 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>untitled</title>
    
    <style type="text/css" media="screen">
    body
    {
        margin: 0;
        overflow: hidden;
    }
    div
    {
        display: -webkit-box;
        border: 1px solid black;
    }
    
    #container
    {
        height: 100%;
        width: 100%;
        -webkit-box-orient: vertical;
    }
    #top-row
    {
        -webkit-box-flex: 0.65;
        -webkit-box-orient: horizontal;
    }

    #bottom-row
    {
        -webkit-box-flex: 0.35;
    }

    .top
    {
    }
    
    .bottom
    {
    }
    .left
    {
        width: 65%;
    }
    
    .right
    {
        width: 35%;
    }
    
    .left img
    {
        display: -webkit-box;
    }
    </style>
    
    
</head>
<body>

<div id="container">
    
<div id="top-row">
    <div class="top left">

    </div>
    <div class="top right">
        
    </div>
</div>

<div id="bottom-row">
    <div class="bottom left">
        
    </div>
    <div class="bottom right">
        
    </div>
</div>

</div>

</body>
</html>