diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flex-hang.html')
| -rw-r--r-- | third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flex-hang.html | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flex-hang.html b/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flex-hang.html new file mode 100644 index 0000000..a323244 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flex-hang.html @@ -0,0 +1,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> |
