Ticket #4144: 4144_2.patch
File 4144_2.patch, 1.1 KB (added by , 14 years ago) |
---|
-
_source/core/htmlparser/fragment.js
131 131 132 132 // Rtrim empty spaces on block end boundary. (#3585) 133 133 if ( element._.isBlockLike 134 && !inPre)134 && element.name != 'pre' ) 135 135 { 136 136 137 137 var length = element.children.length, -
_source/tests/core/htmlparser/htmlparser.html
71 71 72 72 <textarea id="htmlOriginal1"><pre> 73 73 text<b> 74 inside<br /> 74 inside<br /><br /></b> 75 75 76 76 pre 77 77 </pre></textarea> … … 88 88 para graph 89 89 </p><b>compress spaces</b></textarea> 90 90 91 <textarea id="htmlResult2"><p>para graph 91 <textarea id="htmlResult2"><p>para graph</p><b>compress spaces</b></textarea> 92 92 </body> 93 93 </html>