Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: third_party/WebKit/LayoutTests/media/event-attributes-expected.txt

Issue 2024533002: Convert csp-*, event-* and invalid-* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/media/event-attributes-expected.txt
diff --git a/third_party/WebKit/LayoutTests/media/event-attributes-expected.txt b/third_party/WebKit/LayoutTests/media/event-attributes-expected.txt
deleted file mode 100644
index 788637e05650482b4b4ba938f96148fe44995234..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/event-attributes-expected.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-EVENT(loadstart)
-EVENT(durationchange)
-EVENT(loadedmetadata)
-EVENT(loadeddata)
-EVENT(canplay)
-EVENT(canplaythrough)
-EXPECTED (progressEventCount >= '1') OK
-
-*** starting playback
-RUN(video.play())
-EVENT(play)
-EVENT(playing)
-
-*** changing playback rate
-RUN(video.playbackRate = 2)
-EVENT(ratechange)
-
-*** setting volume
-RUN(video.volume = 0.5)
-EVENT(volumechange)
-
-*** pausing playback
-RUN(video.pause())
-EVENT(pause)
-
-*** seeking
-RUN(video.currentTime = 5.6)
-EVENT(seeking)
-EVENT(seeked)
-
-*** beginning playback
-RUN(video.play())
-EVENT(play)
-EVENT(playing)
-EVENT(pause)
-EVENT(ended)
-
-*** played to end, setting 'src' to an invalid movie
-RUN(progressEventCount = 0)
-EVENT(abort)
-EVENT(emptied)
-EVENT(ratechange)
-EVENT(loadstart)
-EVENT(error)
-EXPECTED (progressEventCount == '0') OK
-END OF TEST
-

Powered by Google App Engine
This is Rietveld 408576698