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

Unified Diff: third_party/WebKit/LayoutTests/fullscreen/rendering/overflow.html

Issue 2168373002: Revert of Reland "Implement FullScreen using top layer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolve WebFrameTest.cpp conflict and appease presubmit Created 4 years, 5 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: third_party/WebKit/LayoutTests/fullscreen/rendering/overflow.html
diff --git a/third_party/WebKit/LayoutTests/fullscreen/rendering/overflow.html b/third_party/WebKit/LayoutTests/fullscreen/rendering/overflow.html
deleted file mode 100644
index 35baba197cbf66ac5fd57d7fa30c1d8b82eaca4a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fullscreen/rendering/overflow.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<title>overflow of root element when descendant is fullscreen</title>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<script src="../trusted-event.js"></script>
-<style>:root { overflow: scroll; }</style>
-<div id="log"></div>
-<script>
-async_test(function()
-{
- var root = document.documentElement;
- trusted_request(document.querySelector("div"));
-
- document.addEventListener("fullscreenchange", this.step_func_done(function()
- {
- // The scrollbar should be removed.
- assert_equals(getComputedStyle(root).overflow, "hidden");
- assert_equals(root.clientWidth, window.innerWidth);
- }));
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698