diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/white-space/pre-float-001.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/white-space/pre-float-001.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/white-space/pre-float-001.html b/testing/web-platform/tests/css/css-text/white-space/pre-float-001.html new file mode 100644 index 0000000000..8dd08d8099 --- /dev/null +++ b/testing/web-platform/tests/css/css-text/white-space/pre-float-001.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<title>CSS test preserved spaces and floats interaction</title> +<link rel="author" title="Koji Ishii" href="kojii@chromium.org"> +<link rel="match" href="reference/pre-float-001-ref.html"> +<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-property"> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> +<style> +html { + font-family: Ahem; + font-size: 20px; + line-height: 1; +} +.container { + white-space: pre; + width: 10ch; + margin-bottom: 1em; +} +.float { + float: left; + width: 3ch; + height: 2em; + background: orange; +} +</style> +<body> + <div class="float"></div> + <div class="container">123456 <br>123456</div> + <div class="float"></div> + <div class="container">1234567 <br>1234567</div> + <div class="float"></div> + <div class="container">1234567 <br>1234567</div> + <div class="float"></div> + <div class="container">1234567 <br>1234567</div> + <div class="float"></div> + <div class="container">12345678 <br>12345678</div> +</body> |