PDA

View Full Version : BlackBerry 4.0 Browser behavior differences - wrapping


bfrye
11-09-2004, 10:37 AM

jibi
11-09-2004, 04:23 PM

toddfas
01-07-2005, 02:35 PM
I have noticed that my website renders different on the 4.0 BlackBerry Browser than it did on previous versions. I am using Xhtml markup for the site and one of the biggest differences is that it now does not appear to remove empty lines in the page as it used to.

For example, the following markup:

<span class="s0">Business Phone</span>
<br/>
<input name="txtEditPhone0" value="2126492000"/>
<br/>
<span class="s0">Cellular Phone</span>
<br/>
<input name="txtEditPhone1"/>
<br/>


On a 4.0 browser this outputs:

Business Phone
<input control>
<blank line>
Cellular Phone
<input control>
<blank line>


On prior browsers it would render:

Business Phone
<input control>
Cellular Phone
<input control>

Any ideas on how this can be controled to be consistent with prior browser versions?