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

Unified Diff: third_party/WebKit/LayoutTests/media/video-controls-toggling-expected.txt

Issue 2116013002: Convert video-controls* tests to testharness.js (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 6 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/video-controls-toggling-expected.txt
diff --git a/third_party/WebKit/LayoutTests/media/video-controls-toggling-expected.txt b/third_party/WebKit/LayoutTests/media/video-controls-toggling-expected.txt
deleted file mode 100644
index ec950f7e4bc4743068df8b01fcc2cc01d8ff13f0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/media/video-controls-toggling-expected.txt
+++ /dev/null
@@ -1,28 +0,0 @@
-Tests that showing / hiding video controls uses the sets the display:none property
-
-** Playing the video **
-RUN(video.play())
-
-** Move mouse somewhere over the panel **
-RUN(eventSender.mouseMoveTo(muteButtonCoordinates[0], muteButtonCoordinates[1]))
-
-** Test that controls are shown when controls attribute is present **
-EXPECTED (panel.style['display'] != 'none') OK
-
-** Move mouse outside the video **
-RUN(eventSender.mouseMoveTo(video.offsetLeft, video.offsetTop + 2 * video.offsetHeight))
-
-** The controls should have the display property set to none
-EXPECTED (panel.style['display'] == 'none') OK
-
-** Remove controls attribute**
-RUN(video.removeAttribute('controls'))
-
-** Move mouse back over the panel **
-RUN(eventSender.mouseMoveTo(muteButtonCoordinates[0], muteButtonCoordinates[1]))
-
-** Video controls should not be shown **
-EXPECTED (panel.style['display'] == 'none') OK
-
-END OF TEST
-

Powered by Google App Engine
This is Rietveld 408576698