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

Unified Diff: third_party/WebKit/LayoutTests/media/video-move-to-new-document.html

Issue 1481913002: Remove userCancelledLoad and refactor the code at the call sites (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address nits 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
Index: third_party/WebKit/LayoutTests/media/video-move-to-new-document.html
diff --git a/third_party/WebKit/LayoutTests/media/video-move-to-new-document.html b/third_party/WebKit/LayoutTests/media/video-move-to-new-document.html
new file mode 100644
index 0000000000000000000000000000000000000000..139f7013c9252e850ef323e272add1fb75f073e1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/media/video-move-to-new-document.html
@@ -0,0 +1,34 @@
+<!DOCTYPE html>
+<title>Verify that moving a video element to a new document, still loads it normally</title>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="media-file.js"></script>
+<video></video>
+<iframe></iframe>
+<script>
+ async_test(function(t) {
+ var video = document.querySelector('video');
+ video.src = findMediaFile("video", "content/test");
+ video.onloadeddata = this.step_func(function() {
+ video.onloadeddata = null;
+ assert_true(video.networkState == video.NETWORK_IDLE || video.networkState == video.NETWORK_LOADING);
+ assert_greater_than(video.readyState, video.HAVE_METADATA);
+ // Move the video element to iframe document from
+ // main document and verify that it loads properly
+ document.querySelector('iframe').contentDocument.body.appendChild(video);
+ assert_equals(video.networkState, video.NETWORK_NO_SOURCE);
+ assert_equals(video.readyState, video.HAVE_NOTHING);
+ var actual_events = [];
+ var expected_events = ['emptied', 'loadstart', 'loadeddata'];
+ expected_events.forEach(function(type) {
+ video.addEventListener(type, t.step_func(function() {
+ actual_events.push(type);
+ if (type == 'loadeddata') {
+ assert_array_equals(actual_events, expected_events);
+ t.done();
+ }
+ }));
+ });
+ });
+ });
+</script>

Powered by Google App Engine
This is Rietveld 408576698