SymbiSoft / htmlcontrol-for-symbian

Automatically exported from code.google.com/p/htmlcontrol-for-symbian
1 stars 0 forks source link

Images are not displayed/rendered on the single line #16

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Try to display the following HTML data using the HTML control.
  The data has a string "Text in brackets" which is displayed in between
two images ( b2.gif and b1.gif ).

Here "b2.gif" is a image that shows open bracket and "b1.gif"  هs a image
that shows closed bracket

The HTML code is below:

<html><body>
<div id= A>
<p>
<img src="b2.gif" width="11"align="left" />Text in brackets
<img src="b1.gif" width="11" align = "left"/>
</p>

</div>
</body></html>

What is the expected output? What do you see instead?

Expected Output : The HTML control should display the text "Text in
brackets" between the two images on the SINGLE line

Behavior of the HTML Control : One image is displayed with the text "Text
in brackets" in one line and the other image is shown in the NEXT ( second
line ) line.

What version of the product are you using? On what operating system?
Latest version of the HTML control

Original issue reported on code.google.com by yunu...@gmail.com on 6 Jun 2010 at 9:41

GoogleCodeExporter commented 8 years ago
try

<img src="b2.gif" width="11"align="left" />Text in brackets<img src="b1.gif" 
width="11" align = "left"/>

Original comment by gzytom@gmail.com on 11 Oct 2011 at 1:34