vote up 1 vote down star

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?

flag

2 Answers

vote up 0 vote down

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|flag
vote up 7 vote down

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|flag
+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 at 9:16

Your Answer

Get an OpenID
or

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