325377.xul 580 B

12345678910111213141516
  1. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/1999/xhtml"
  2. title="Testcase bug 325377 - Crash on reload with evil xul textcase, using menulist and nested tooltips">
  3. <menulist style="display: table-cell;">
  4. <tooltip style="display: none;">
  5. <tooltip/>
  6. </tooltip>
  7. </menulist>
  8. <html:script>
  9. function removestyles(){
  10. document.getElementsByTagName('tooltip')[0].removeAttribute('style');
  11. }
  12. try { document.getElementsByTagName('tooltip')[0].offsetHeight; } catch(e) {}
  13. setTimeout(removestyles,0);
  14. </html:script>
  15. </window>