Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/white-space/white-space-normal-011.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Text: 'white-space: normal' (basic)</title>
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="match" href="reference/white-space-normal-011-ref.html">
<style>
div
{
border: black solid 2px;
font-family: monospace;
font-size: 32px;
margin-bottom: 0.25em;
width: 16ch;
}
div#test
{
white-space: normal;
}
div#reference
{
white-space: pre;
}
</style>
<p>Test passes if the characters inside of each black-bordered rectangles are laid out identically.
<div id="test">Lorem ipsum. Dolor
sit	amet. <br>consectetur</div>
<div id="reference">Lorem ipsum.
Dolor sit amet.
consectetur</div>
<!--
<div id="test">Lorem ipsum. Dolor
^^^^^^^^
12345678
sit	amet. <br>consectetur</div>
^^^
123
	 == Horizontal tabulation == 	 == 	

 == Line feed == 
 == 

-->