TinyMCE and other editors as-default usually do some level of clean up.
For example with TinyMCE there are configuration options such as cleanup and clean up on startup which can be used to control the cleanup actions.
tinyMCE.init({
...
cleanup : false
});
Documentation as taken from TinyMCE wiki:
This option enables or disables the built-in clean up functionality. TinyMCE is equipped with powerful clean up functionality that enables you to specify what elements and attributes are allowed and how HTML contents should be generated.
This option is set to true by default, but if you want to disable it you may set it to false.
Notice: It's not recommended to disable this feature.
It might be worth mentioning that the browser usually messes with the HTML. The clean up not only fixes several problems with the browsers' parsed HTML document, like paths etc., it also makes sure it is a correct XHTML document, with all tags closed, the " at the right places, and things like that.