This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
Consider this formatBlock testcase: ['<p>', '{<pre> foo bar </pre>}'], Chrome 15 dev produces <p> foo<br> bar</p> while the spec, IE9, and Firefox 8.0a2 produce <p>{foo bar }</p> Opera 11.50 is similar to IE/Firefox. Should we special-case this the way WebKit does, or not? WebKit probably better matches user expectations, but it might be annoying to handle. If we do special-case it, we likely want to just replace all the newlines by <br> right before any time when we might plausibly change the tag name.