mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
25 lines
1.2 KiB
HTML
25 lines
1.2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Test: white-space: mixed tests (simple)</title>
|
|
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
|
|
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-06-29 -->
|
|
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/text/white-space/mixed/002.html" type="text/html">
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-model">
|
|
<link rel="match" href="reference/white-space-mixed-002-ref.htm">
|
|
|
|
<meta name="flags" content="ahem">
|
|
|
|
<style type="text/css">
|
|
.test { border: solid blue; font: 1.25em/1 Ahem; background: yellow; color: orange; float: left; clear: left; margin: 1em; }
|
|
.normal { white-space: normal; }
|
|
.nowrap { white-space: nowrap; }
|
|
.pre { white-space: pre; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if the contents of the 2 blue stripes are <strong>identical</strong>.</p>
|
|
<div class="test normal">[<span class="normal"> </span><span class="pre"> </span><span class="normal"> </span><span class="pre"> </span><span class="normal"> </span>]</div>
|
|
<div class="test pre">[ ]</div>
|
|
</body>
|
|
</html> |