diff options
author | darin <darin@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2003-07-31 00:18:03 +0000 |
---|---|---|
committer | darin <darin@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2003-07-31 00:18:03 +0000 |
commit | 79561979b984cd8ab9efb2ef47091d00451ceddb (patch) | |
tree | 664169507f32abbb269acbfa76c2a9b08097fd83 /third_party/WebKit/LayoutTests/fast/flexbox/024.html | |
parent | 0257162719cacdee2ea1b9f5a0dc7a0163930c83 (diff) | |
download | chromium_src-79561979b984cd8ab9efb2ef47091d00451ceddb.zip chromium_src-79561979b984cd8ab9efb2ef47091d00451ceddb.tar.gz chromium_src-79561979b984cd8ab9efb2ef47091d00451ceddb.tar.bz2 |
Moving layout tests in here.
git-svn-id: svn://svn.chromium.org/blink/trunk@4740 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/flexbox/024.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/flexbox/024.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/flexbox/024.html b/third_party/WebKit/LayoutTests/fast/flexbox/024.html new file mode 100644 index 0000000..8712ef4 --- /dev/null +++ b/third_party/WebKit/LayoutTests/fast/flexbox/024.html @@ -0,0 +1,37 @@ +<html> +<head> +<style> +div { + display: -moz-box; + display: -khtml-box; + display: box; + width: 100px; + height: 100px; + -moz-box-orient: vertical; + -khtml-box-orient: vertical; + box-orient: vertical; +} + +div.outer { + background-color:red; +} + +img.inner { + background-color:green; + height:100px; + display: block; +} +</style> +</head> +<body> +<p>You should see a single 100x100 green square below. If your browser supports the +display of ALT text, you should see the word "Image" inside the green square. +If you see any red, then +the test has failed. This test is checking to make sure replaced elements inside boxes +get stretched when <code>box-align: stretch</code> is specified.</p> +<div class="outer"> +<img class="inner" alt="Image"> +</div> +</body> + +
\ No newline at end of file |