Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.2.11-core
-
None
Description
1) Run the breadcrumbs demo page.
2) Change the orientation to vertical and set inline style to :
background-color:red
3) Click on update.
Note that in FF and safari browser the style change does not take effect.
The problem is the resulting DOM:
<span style="background-color: red;" class="x4v"><div>...
As you can see, a DIV (block) got rendered in a SPAN (in-line). This is an illegal DOM hierarchy as the spec. clearly states that in-line elements must only ever include other in-line elements.