hixie: Make <wbr> less magical. (whatwg r6898)

hixie: Make <wbr> less magical. (whatwg r6898)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.5495&r2=1.5496&f=h
http://html5.org/tools/web-apps-tracker?from=6897&to=6898

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.5495
retrieving revision 1.5496
diff -u -d -r1.5495 -r1.5496
--- Overview.html 13 Jan 2012 23:12:10 -0000 1.5495
+++ Overview.html 13 Jan 2012 23:45:32 -0000 1.5496
@@ -66490,7 +66490,9 @@
 q::after { content: close-quote; }
 
 br { content: '\A'; white-space: pre; }
-nobr { white-space: nowrap; }</pre>
+nobr { white-space: nowrap; }
+wbr { content: '\200B'; }
+nobr wbr { white-space: normal; }</pre>
 
   <p>The following rules are also expected to apply, as
   <a href="#presentational-hints">presentational hints</a>:</p>
@@ -66520,10 +66522,6 @@
   described in the non-normative note to this effect in CSS2.1.</p>
   
 
-  <p>The <code><a href="#the-wbr-element">wbr</a></code> element is expected to override the
-  'white-space' property and always provide a line-breaking
-  opportunity.</p>
-
   <p>The initial value for the 'color' property is expected to be
   black. The initial value for the 'background-color' property is
   expected to be 'transparent'. The canvas' background is expected to

Received on Friday, 13 January 2012 23:49:26 UTC