Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / media / media-load-event-expected.txt
blob189daeb2648728a768d69818a83c036b721e8bce
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())
7 EVENT(loadstart)
8 EVENT(durationchange)
9 EVENT(loadeddata)
10 EVENT(canplaythrough)
12 RUN(document.getElementById('parent').appendChild(mediaElement))
13 RUN(mediaElement.play())
15 EVENT(canplaythrough)
16 EVENT(play)
17 EVENT(playing)
19 END OF TEST