| Index: third_party/WebKit/LayoutTests/fullscreen/full-screen-video-has-backdrop.html
|
| diff --git a/third_party/WebKit/LayoutTests/fullscreen/full-screen-video-has-backdrop.html b/third_party/WebKit/LayoutTests/fullscreen/full-screen-video-has-backdrop.html
|
| deleted file mode 100644
|
| index f08958cac6cc7474e7370d846df3869a09fa1e78..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fullscreen/full-screen-video-has-backdrop.html
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -<!doctype html>
|
| -<style>
|
| -#wrapper {
|
| - display: flex;
|
| - justify-content: center;
|
| -}
|
| -
|
| -::backdrop {
|
| - background: green;
|
| -}
|
| -</style>
|
| -
|
| -<script>
|
| -function goFullscreen() {
|
| - document.getElementById('wrapper').webkitRequestFullscreen();
|
| -}
|
| -</script>
|
| -
|
| -<p>Test that fullscreen object elements get a ::backdrop. You should see a green background when the object element is fullscreen.</p>
|
| -
|
| -<div id='wrapper'>
|
| - <object type="application/x-shockwave-flash" data="../plugins/resources/simple_blank.swf" width="100" height="100" id='object'></object>
|
| -</div>
|
| -
|
| -<button id='button' onclick='goFullscreen()'>Go fullscreen</button>
|
| -
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.waitUntilDone();
|
| - document.addEventListener('webkitfullscreenchange', function() {
|
| - testRunner.notifyDone();
|
| - });
|
| -
|
| - function thunk() {
|
| - document.removeEventListener("keypress", thunk);
|
| - goFullscreen();
|
| - }
|
| - document.addEventListener("keypress", thunk);
|
| - if (window.eventSender)
|
| - eventSender.keyDown(" ", []);
|
| -
|
| - testRunner.notifyDone();
|
| -}
|
| -</script>
|
|
|