diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html b/testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html new file mode 100644 index 0000000000..3986079e62 --- /dev/null +++ b/testing/web-platform/tests/css/css-text/white-space/white-space-pre-wrap-trailing-spaces-023.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Text test: hanging trailing spaces with white-space:pre-wrap</title> +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" /> +<link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2"> +<link rel="help" title="3. White Space and Wrapping: the white-space property" href="https://drafts.csswg.org/css-text-3/#white-space-property"> +<link rel="help" title="4.1.2. Phase II: Trimming and Positioning" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2"> +<link rel="help" href="https://drafts.csswg.org/css-text-3/#valdef-white-space-pre-wrap"> +<link rel="match" href="reference/white-space-break-spaces-005-ref.html"> +<meta name="assert" content="preserved RTL trailing spaces under 'white-space: pre-wrap' hang and shouldn't cause overflow and activate the horizontal scrollbar."> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> +<style> + div { + width: 2ch; + height: 100px; + font: 50px/1 Ahem; + color: green; + + overflow-y: hidden; + overflow-x: auto; + white-space: pre-wrap; + + direction: rtl; + } +</style> +<p>Test passes if there is a <strong>filled green square</strong> and <strong>no red</strong>.</p> +<div>XX XX</div> |