malanno
malanno

Reputation: 95

xslt forms not working with current Firefox but works perfect with Chrome

Has anyone encountered form problems with xsl. I leaving a link only because I don't know how to illustrate incompatibilities otherwise.

With Firefox, the reset or the submit doesn't work, but on Chrome and Explorer it does, though the formatting is off for Explorer it still works.

This is a working link to my xml file that's creating the problem

Any ideas. Can the xhtml part of Firefox be off? Or is it me?

Thank you...

Upvotes: 0

Views: 36

Answers (1)

Martin Honnen
Martin Honnen

Reputation: 167516

It seems you have two nested form elements, as most browsers feed the transformation result to the HTML parser you might get away with that. Mozilla, however, renders the result tree of the XSLT transformation, meaning there is no correction by the HTML parser. That could explain the difference.

Upvotes: 1

Related Questions