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

Side by Side Diff: LayoutTests/media/controls-in-frameless-document.html

Issue 190463002: Remove document().page() null checks in MediaControls (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: test Created 6 years, 9 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/controls-in-frameless-document-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>video controls in a frameless document</title>
5 <script src="../resources/testharness.js"></script>
6 <script src="../resources/testharnessreport.js"></script>
7 </head>
8 <body>
9 <script>
10 test(function()
11 {
12 var doc = document.implementation.createHTMLDocument();
13 var video = doc.createElement("video");
14 doc.body.appendChild(video);
15 video.controls = true;
16 // pass if we didn't crash
17 });
18 </script>
19 </body>
20 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/media/controls-in-frameless-document-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698