up vote 1 down vote favorite
share [g+] share [fb]

I have a component that creates a set of text like this in the innerHTML:

fourty two<br><br><input value="Select" type="button">

upon setting the innerHTML, the browser will sometimes parse this text, producing:

fourty two<br><br><input type="button" value="Select">

This behavior seems browser dependent, because I can get my tests to run in FFx, and then they will fail in safari, because of the order of the attributes.

Is there a way I can parse the HTML into some DOM-like form, and then print it out before the compare so that I can expect a consistent ordering of html attributes?

link|improve this question
feedback

2 Answers

The attributes in HTML elements are unordered, that is: the order is irrelevant. If your tests assume a specific order then they're doing it wrong really.

link|improve this answer
+1. If the OP's tests break when attributes are in a different order, then the tests themselves are broken because they rely on unspecified behaviour; the DOM specification explicitly states that attributes are not in any particular order. – NickFitz Oct 20 '09 at 9:16
feedback

I had to write my own canonicaization funciton for HTML for just this reason. See http://code.google.com/p/google-code-prettify/source/browse/trunk/src/prettify.js#556

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.