Files
rust_browser/tests/goldens/fixtures/256-word-spacing.html
Zachary D. Rowitsch 0c082579ba Implement CSS 2.1 text properties with code review fixes (§16.1, §16.3, §16.4, §9.10)
Implement word-spacing, text-indent verification, text-decoration completeness,
direction, and unicode-bidi properties. Code review fixes include adding
TextAlign::Start variant for correct direction-dependent initial value and
consolidating duplicate layout_html() test helpers across 12 files into a
shared tests::common module.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-14 09:19:07 -04:00

17 lines
593 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body { margin: 0; font-size: 16px; }
.normal { word-spacing: normal; width: 400px; background: #eee; margin-bottom: 10px; }
.positive { word-spacing: 20px; width: 400px; background: #ddd; margin-bottom: 10px; }
.negative { word-spacing: -3px; width: 400px; background: #ccc; margin-bottom: 10px; }
</style>
</head>
<body>
<div class="normal">Normal word spacing between these words.</div>
<div class="positive">Extra word spacing between these words.</div>
<div class="negative">Tight word spacing between these words.</div>
</body>
</html>