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

Unified Diff: third_party/WebKit/LayoutTests/fullscreen/full-screen-zIndex-expected.html

Issue 2107233002: Reland "Implement FullScreen using top layer." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: new untested DCHECK 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/full-screen-zIndex-expected.html
diff --git a/third_party/WebKit/LayoutTests/fullscreen/full-screen-zIndex-expected.html b/third_party/WebKit/LayoutTests/fullscreen/full-screen-zIndex-expected.html
index 37c105b4579535c36cbd0eba49f31f331ab68ead..f9fc20161d8bc0ec16e3fbcd17d21da9ae7d1108 100644
--- a/third_party/WebKit/LayoutTests/fullscreen/full-screen-zIndex-expected.html
+++ b/third_party/WebKit/LayoutTests/fullscreen/full-screen-zIndex-expected.html
@@ -6,15 +6,14 @@
background-color: black;
}
div {
- width: 200px;
- height: 100px;
+ width: 100%;
+ height: 100%;
border: 4px solid darkgreen;
background-color: green;
position: absolute;
- left: 50%;
- top: 50%;
- margin-left: -104px;
- margin-top: -54px;
+ box-sizing: border-box;
+ top: 0;
+ left: 0;
}
</style>
</head>

Powered by Google App Engine
This is Rietveld 408576698