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

Unified Diff: third_party/WebKit/LayoutTests/media/autoplay-clears-autoplaying-flag.html

Issue 1482393003: Clear m_autoplaying when starting auto playback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cl feedback Created 5 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/media/autoplay-clears-autoplaying-flag.html
diff --git a/third_party/WebKit/LayoutTests/media/autoplay-clears-autoplaying-flag.html b/third_party/WebKit/LayoutTests/media/autoplay-clears-autoplaying-flag.html
new file mode 100644
index 0000000000000000000000000000000000000000..779c683e3dd7d98f412a667e895968de979592c1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/media/autoplay-clears-autoplaying-flag.html
@@ -0,0 +1,25 @@
+<!doctype html>
+<title>autoplay clears the autoplaying flag</title>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="media-file.js"></script>
+<div id="log"></div>
+<script>
+async_test(function(t)
+{
+ var a = document.createElement('audio');
+ a.src = 'data:audio/wav;base64,UklGRjQAAABXQVZFZm10IBAAAAABAAEAQB8AAIA+AAACABAAZGF0YRAAAAAAAAAA//8CAP3/BAD7/wQA';
+ a.autoplay = true;
+ a.addEventListener('ended', function()
+ {
+ a.currentTime = 0;
+ });
+ a.addEventListener('seeked', t.step_func(function()
+ {
+ assert_true(a.paused);
+ assert_true(a.readyState == a.HAVE_ENOUGH_DATA);
+ t.done();
+ }));
+ document.body.appendChild(a);
+});
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698