Skip to main content

Search and Top Navigation

#4907 closed bug (notabug)

Opened October 12, 2009 10:16AM UTC

Closed November 16, 2009 09:42AM UTC

Last modified October 11, 2012 09:15PM UTC

Accordion does not display tab contents when contents are a table. IE8

Reported by: sukerman Owned by:
Priority: major Milestone:
Component: ui.core Version: 1.7.2
Keywords: Cc:
Blocked by: Blocking:
Description

Accordion does not show contents of the tabs if they are in a table in IE8.

This works :

<div id='accordion'>

<h3>Contact Details</h3>

<div><p>Hello</p></div>

<h3>Groups</h3>

<div><p>Hello</p></div>

<h3>Account</h3>

<div><p>Hello</p></div>

<h3>Permissions</h3>

<div><p>Hello</p></div>

<h3>FTP Account</h3>

<div><p>Hello</p></div>

</div>

This does not work:

<div id='accordion'>

<h3>Contact Details</h3>

<div><p><table><tr><td>Hello</td></tr></table></p></div>

<h3>Groups</h3>

<div><p><table><tr><td>Hello</td></tr></table></p></div>

<h3>Account</h3>

<div><p><table><tr><td>Hello</td></tr></table></p></div>

<h3>Permissions</h3>

<div><p><table><tr><td>Hello</td></tr></table></p></div>

<h3>FTP Account</h3>

<div><p><table><tr><td>Hello</td></tr></table></p></div>

</div>

Attachments (0)
Change History (3)

Changed October 12, 2009 10:56AM UTC by sukerman comment:1

I've sorted this. Kind of... You must remember to include a DOCTYPE at the begininng of your document, otherwise IE8 goes into quirks mode and this fails as described, but in standards mode its ok.

Changed November 16, 2009 09:42AM UTC by jzaefferer comment:2

resolution: → invalid
status: newclosed

Changed October 11, 2012 09:15PM UTC by scottgonzalez comment:3

milestone: TBD

Milestone TBD deleted