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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/window-resize-centered-inline-under-fixed-pos-expected.html

Issue 2058053002: Revert of Convert fast/repaint/window-resize*.html into reftests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/fast/repaint/window-resize-centered-inline-under-fixed-pos-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/window-resize-centered-inline-under-fixed-pos-expected.html b/third_party/WebKit/LayoutTests/fast/repaint/window-resize-centered-inline-under-fixed-pos-expected.html
deleted file mode 100644
index 87b817b98230c01f2bb835956727c8d842c901ef..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/window-resize-centered-inline-under-fixed-pos-expected.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<style>
-.container {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: lightgrey;
-}
-
-.parent {
- height: 100%;
- width: 6px;
- background-color: black;
-}
-
-.child {
- position: relative;
- display: inline-block;
- height: 30px;
- width: 6px;
- top: 50%;
- background-color: red;
-}
-
-</style>
-<!--
-Tests that the element with class "child" is invalidated when the browser is resized,
-since its position is relative to the size of the frame.
--->
-<div class="container">
- <div class="parent">
- <div class="child"></div>
- </div>
-</div>

Powered by Google App Engine
This is Rietveld 408576698