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

Unified Diff: LayoutTests/fast/regions/full-screen-video-from-region.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/full-screen-video-from-region.html
diff --git a/LayoutTests/fast/regions/full-screen-video-from-region.html b/LayoutTests/fast/regions/full-screen-video-from-region.html
deleted file mode 100644
index 58af9a063aa5f7fcb2f318d1d5798f46e1484b91..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/full-screen-video-from-region.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <script>
- var runPixelTests = true;
-
- function init() {
- // Bail out early if the full screen API is not enabled or is missing:
- if (Element.prototype.webkitRequestFullScreen == undefined) {
- logResult(false, "Element.prototype.webkitRequestFullScreen == undefined");
- endTest();
- } else {
- waitForEventAndEnd(document, 'webkitfullscreenchange');
- runWithKeyDown(goFullScreen);
- }
- }
-
- function goFullScreen() {
- video.webkitRequestFullScreen();
- }
- </script>
- <script src="../../fullscreen/full-screen-test.js"></script>
- <style>
- .content {
- -webkit-flow-into: content-flow;
- }
-
- .region {
- -webkit-flow-from: content-flow;
- border: 1px solid red;
- margin: 10px;
- padding: 10px;
- height: 480px;
- }
- </style>
-</head>
-<body onload="init()">
- <div>This tests the full screen video playing from a region flow.
- After entering full screen mode, only the full screen video should be visible.
- Click <button onclick="goFullScreen()">go full screen</button> to run the test.</div>
- <video class="content" height="270" width="480" id="video" controls autoplay loop></video>
- <div class="region"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698