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

Unified Diff: LayoutTests/fullscreen/rendering/ua-style-iframe-border.html

Issue 1032253002: Move iframe border/padding to the standard Fullscreen UA style sheet (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/css/fullscreen.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fullscreen/rendering/ua-style-iframe-border.html
diff --git a/LayoutTests/fullscreen/rendering/ua-style-iframe-border.html b/LayoutTests/fullscreen/rendering/ua-style-iframe-border.html
deleted file mode 100644
index 6ef676a2e70f8ab8f56e9b8a2cfee314c18232e4..0000000000000000000000000000000000000000
--- a/LayoutTests/fullscreen/rendering/ua-style-iframe-border.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<title>Fullscreen UA style sheet removes iframe border</title>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<script src="../trusted-event.js"></script>
-<div id="log"></div>
-<iframe></iframe>
-<script>
-async_test(function()
-{
- var iframe = document.querySelector("iframe");
-
- // The HTML UA style sheet gives iframe a border.
- // https://html.spec.whatwg.org/#embedded-content-rendering-rules
- assert_equals(getComputedStyle(iframe).borderStyle, "inset");
-
- document.addEventListener("fullscreenchange", this.step_func_done(function()
- {
- // The Fullscreen UA style sheet removes the iframe border.
- assert_equals(getComputedStyle(iframe).borderStyle, "none");
- }));
-
- trusted_request(iframe);
-});
-</script>
« no previous file with comments | « no previous file | Source/core/css/fullscreen.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698