Details
-
Bug
-
Resolution: Fixed
-
Major
-
1.0 B5
-
None
-
XWiki 1.0 Beta 5 (and svn trunk), Tomcat 5.5.20, IBM JDK 1.5.0.4, Mysql 5.0, Gentoo 2006.1
-
style macro, wysiwyg, editor
-
Description
An existing page with a div using float and width is converted by the WYSIWYG editor to the style macro. However, the rendered html does not show these properties.
A page such as:
<div style="float:left; width:49%;">
left side
</div>
<div style="float:left; width:49%;">
right side
</div>
Is convered to:
{style:type=div|float=left|width=49%}left side {style}{style:type=div|float=left|width=49%}
right side {style}
Which is rendered in HTML as:
<div style="" >
left side
</div><div style="" >
right side
</div>