Index: third_party/WebKit/LayoutTests/media/media-load-event-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/media/media-load-event-expected.txt b/third_party/WebKit/LayoutTests/media/media-load-event-expected.txt |
deleted file mode 100644 |
index 189daeb2648728a768d69818a83c036b721e8bce..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/media/media-load-event-expected.txt |
+++ /dev/null |
@@ -1,20 +0,0 @@ |
-Test that media file is not reloaded when an element is inserted into the DOM. |
- |
-RUN(mediaElement = document.createElement('audio')) |
-RUN(mediaElement.src = 'content/test.wav') |
-RUN(mediaElement.load()) |
- |
-EVENT(loadstart) |
-EVENT(durationchange) |
-EVENT(loadeddata) |
-EVENT(canplaythrough) |
- |
-RUN(document.getElementById('parent').appendChild(mediaElement)) |
-RUN(mediaElement.play()) |
- |
-EVENT(canplaythrough) |
-EVENT(play) |
-EVENT(playing) |
- |
-END OF TEST |
- |