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

Side by Side Diff: third_party/WebKit/LayoutTests/media/adopt-node-video-controls-crash.html

Issue 2268373002: clean up media tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/audio-controls-computed-display.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Insert a video element with controls into another document</title> 2 <title>Insert a video element with controls into another document</title>
3 <script src="../resources/testharness.js"></script> 3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script> 4 <script src="../resources/testharnessreport.js"></script>
5 <div id="log"></div>
6 <script> 5 <script>
7 test(function() 6 test(function()
8 { 7 {
9 var video = document.createElement("video"); 8 var video = document.createElement("video");
10 video.controls = true; 9 video.controls = true;
11 video.src = "data:,"; 10 video.src = "data:,";
12 11
13 var otherDocument = document.implementation.createHTMLDocument(); 12 var otherDocument = document.implementation.createHTMLDocument();
14 otherDocument.body.appendChild(video); 13 otherDocument.body.appendChild(video);
15 }); 14 });
16 </script> 15 </script>
17 </html> 16 </html>
18 17
19 18
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/media/audio-controls-computed-display.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698