diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/CSS2/floats-clear/floats-147.xht | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/floats-clear/floats-147.xht')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/floats-clear/floats-147.xht | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/floats-clear/floats-147.xht b/testing/web-platform/tests/css/CSS2/floats-clear/floats-147.xht new file mode 100644 index 0000000000..e75a7e84d8 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/floats-clear/floats-147.xht @@ -0,0 +1,36 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>CSS Test: Floats: No more to the right than the right edge of the containing block</title> + <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> + <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> + <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/float/047-demo.html" type="text/html"/> + <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" /> + <link rel="match" href="floats-147-ref.xht" /> + + <style type="text/css"> + .outer { width: 15em; background: red; border-left: 1em solid orange; } + .container { width: 9em; margin-left: 4em; background: orange; + height: 1em; line-height: 1; + border: 1em transparent; border-style: none solid; } + .float { float: right; width: 14em; background: blue; color: blue; } + .control { width: 14em; height: 1em; background: blue; + border-left: 1em solid orange; border-right: 1em solid orange; } + </style> + </head> + <body> + <p>Test passes if there is a single blue rectangle with a vertical + orange stripe on each side.</p> + <div class="control"></div> + <div class="outer" dir="ltr"> + <div class="container"> + <div class="float">TEST-LTR</div> + </div> + </div> + <div class="outer" dir="rtl"> + <div class="container"> + <div class="float">TEST-RTL</div> + </div> + </div> + </body> +</html> |