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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/flexible-box-overflow.html

Issue 2327223002: Move all remaining fast/repaint tests 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/flexible-box-overflow.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/flexible-box-overflow.html b/third_party/WebKit/LayoutTests/fast/repaint/flexible-box-overflow.html
deleted file mode 100644
index 83b681644f9c2dfd7043ed9e64b50a4a2deadfca..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/flexible-box-overflow.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<html>
-<head>
-<style>
-div.flexbox {
- height: 80px;
- width: 80px;
- background-color: yellow;
- display: -moz-box;
- display: -webkit-box;
- display: box;
- -moz-box-align: center;
- -webkit-box-align: center;
- box-align: center;
-}
-
-div.horizontal {
- -moz-box-orient: horizontal;
- -webkit-box-orient: horizontal;
- box-orient: horizontal;
-}
-
-div.vertical {
- -moz-box-orient: vertical;
- -webkit-box-orient: vertical;
- box-orient: vertical;
-}
-
-div.bigbox {
- height: 98px;
- width: 98px;
- border: 1px solid black;
- margin-left: -10px;
- margin-top: -10px;
-}
-</style>
-</head>
-<body>
-<p>
- This is a test for regressions against <i><a href="https://bugs.webkit.org/show_bug.cgi?id=8056">http://bugzilla.opendarwin.org/show_bug.cgi?id=8056</a>
- Flexible boxes do not repaint their top, left and children's overflows</i>.
-</p>
-<hr>
-<div style="padding:10px;">
-<div class="flexbox horizontal">
-<div class="bigbox" style="white-space: pre;">Lorem ipsum dolor sit amet.</div>
-</div>
-</div>
-<div style="padding:10px; margin-top: 20px;">
-<div class="flexbox horizontal">
-<div class="bigbox"></div>
-</div>
-</div>
-<div style="padding:10px; margin-top: 20px;">
-<div class="flexbox vertical">
-<div class="bigbox"></div>
-</div>
-</div>
-<div style="padding:10px; margin-top: 20px; margin-bottom: 40px;">
-<div class="flexbox vertical">
-<div class="bigbox">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam et ipsum. Nam consectetuer mi eget velit.</div>
-</div>
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698