layout/reftests/line-breaking/between-whitespaces-ref.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

michael@0 1 <!DOCTYPE html>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <title>Line breaks between white spaces</title>
michael@0 5 <style>
michael@0 6 div {
michael@0 7 width: 0px;
michael@0 8 border: 1px solid blue;
michael@0 9 white-space: nowrap;
michael@0 10 }
michael@0 11 </style>
michael@0 12 </head>
michael@0 13 <body>
michael@0 14 <table>
michael@0 15 <tr><th>U+0009</th><td><div>&#x0009;&#x0009;</div></td></tr>
michael@0 16 <tr><th>U+000D</th><td><div>&#x000D;&#x000D;</div></td></tr>
michael@0 17 <tr><th>U+0020</th><td><div>&#x0020;&#x0020;</div></td></tr>
michael@0 18 <tr><th>U+2000</th><td><div>&#x2000;&#x2000;</div></td></tr>
michael@0 19 <tr><th>U+2001</th><td><div>&#x2000;&#x2001;</div></td></tr>
michael@0 20 <tr><th>U+2002</th><td><div>&#x2000;&#x2002;</div></td></tr>
michael@0 21 <tr><th>U+2003</th><td><div>&#x2000;&#x2003;</div></td></tr>
michael@0 22 <tr><th>U+2004</th><td><div>&#x2000;&#x2004;</div></td></tr>
michael@0 23 <tr><th>U+2005</th><td><div>&#x2000;&#x2005;</div></td></tr>
michael@0 24 <tr><th>U+2006</th><td><div>&#x2000;&#x2006;</div></td></tr>
michael@0 25 <tr><th>U+2008</th><td><div>&#x2000;&#x2008;</div></td></tr>
michael@0 26 <tr><th>U+2009</th><td><div>&#x2000;&#x2009;</div></td></tr>
michael@0 27 <tr><th>U+200A</th><td><div>&#x2000;&#x200A;</div></td></tr>
michael@0 28 <tr><th>U+200B</th><td><div>&#x2000;&#x200B;</div></td></tr>
michael@0 29 <tr><th>U+3000</th><td><div>&#x3000;<br>&#x3000;</div></td></tr>
michael@0 30 </table>
michael@0 31 </body>
michael@0 32 </html>

mercurial