1 Test that media file is not reloaded when an element is inserted into the DOM.
3 RUN(mediaElement = document.createElement('audio'))
4 RUN(mediaElement.src = 'content/test.wav')
5 RUN(mediaElement.load())
12 RUN(document.getElementById('parent').appendChild(mediaElement))
13 RUN(mediaElement.play())