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

Side by Side Diff: LayoutTests/media/video-source-add-after-remove.html

Issue 360103003: Test adding a <source> element after removing a failed candidate (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/media/video-source-add-after-remove-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <title>Add &lt;source> after removing failed candidate</title>
5 <script src=video-test.js></script>
6 <script src=media-file.js></script>
7 <script>
8 function error()
9 {
10 findMediaElement();
11 video.removeChild(video.firstChild);
12 var source = document.createElement("source");
13 source.src = findMediaFile("video", "content/test");
14 video.appendChild(source);
15 waitForEventAndEnd("loadedmetadata");
16 }
17 </script>
18 </head>
19
20 <body>
21 <video><source onerror="error()"></video>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/media/video-source-add-after-remove-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698