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

Side by Side Diff: third_party/WebKit/LayoutTests/fullscreen/rendering/backdrop-video.html

Issue 2202493002: NOT FOR REVIEW: Fullscreen WIP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 1 month 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>::backdrop for a fullscreen video element</title>
3 <script src="../trusted-event.js"></script>
4 <style>
5 video::backdrop {
6 background: green;
7 }
8 /* A video element in fullscreen will always get controls.
9 ::-webkit-media-controls shouldn't be exposed to the web, but it is, so abuse
10 it to hide the controls and simplify the test expectations. */
11 video::-webkit-media-controls {
12 display: none;
13 }
14 </style>
15 <video></video>
16 <script>
17 testRunner.waitUntilDone();
18 trusted_request(document.querySelector("video"));
19 document.addEventListener("fullscreenchange", function() {
20 testRunner.notifyDone();
21 });
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698