diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-text/line-breaking/line-breaking-atomic-003.html')
-rw-r--r-- | testing/web-platform/tests/css/css-text/line-breaking/line-breaking-atomic-003.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-text/line-breaking/line-breaking-atomic-003.html b/testing/web-platform/tests/css/css-text/line-breaking/line-breaking-atomic-003.html new file mode 100644 index 0000000000..dea68b0f87 --- /dev/null +++ b/testing/web-platform/tests/css/css-text/line-breaking/line-breaking-atomic-003.html @@ -0,0 +1,25 @@ +<!doctype html> +<html> +<meta charset="utf-8"> +<title>CSS Text — NARROW NO-BREAK SPACE after atomic inline</title> +<meta name=assert content="There is a soft wrap opportunity between an atomic inline and a preceeding NARROW NO-BREAK SPACE"> +<link rel=help href="https://www.w3.org/TR/css-text-3/#line-break-details"> +<link rel=match href="../../reference/ref-filled-green-100px-square.xht"> +<link rel=author title="Florian Rivoal" href="https://florian.rivoal.net"> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> +<style> +div { + font: 50px/1 Ahem; + color: green; + width: 100px; + height: 100px; + background: red; +} +span { + display: inline-block; +} +</style> + +<p>Test passes if there is a filled green square and <strong>no red</strong>. + +<div>AB <span>CD</span></div> |