Opened 14 years ago

Closed 14 years ago

Last modified 11 years ago

#4907 closed bug (notabug)

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>

Change History (3)

comment:1 Changed 14 years ago by sukerman

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.

comment:2 Changed 14 years ago by Jörn Zaefferer

Resolution: invalid
Status: newclosed

comment:3 Changed 11 years ago by Scott González

Milestone: TBD

Milestone TBD deleted

Note: See TracTickets for help on using tickets.