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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/vertical-overflow-parent.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 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/vertical-overflow-parent.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/vertical-overflow-parent.html b/third_party/WebKit/LayoutTests/fast/repaint/vertical-overflow-parent.html
deleted file mode 100644
index 2880a661de13d88aecd75141856d87f1c186fb06..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/vertical-overflow-parent.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html><head>
- <style>
- .container {
- margin: 20px;
- width: 300px;
- height: 200px;
- border: 1px solid black;
- overflow: scroll;
- }
- .vertical-rl {
- -webkit-writing-mode: vertical-rl;
- }
- .offset {
- width: 2000px;
- height: 100px;
- }
- .target {
- width: 100px;
- height: 100px;
- background-color: orange;
- visibility: hidden;
- }
- </style>
-</head>
-<body>
- <div class="vertical-rl">
- <div class="container">
- <div class="offset"></div>
- <div class="target"></div>
- </div></div>
- An orange rect should be painted.<br/>
- In DumpRenderTree, there should be repaint logs of 100x100 rect. We don't care how many times is the log dumpped.
- <script src="../../resources/run-after-layout-and-paint.js"></script>
- <script src="resources/text-based-repaint.js"></script>
- <script>
- repaintTest = function() {
- var target = document.getElementsByClassName("target")[0];
- target.style.visibility = "visible";
- };
- var container = document.getElementsByClassName("container")[0];
- runAfterLayoutAndPaint(function() {
- container.scrollLeft = 0;
- runRepaintAndPixelTest();
- });
- </script>
-</body></html>

Powered by Google App Engine
This is Rietveld 408576698