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

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.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/background-clip-content-box-repaint.html
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html
deleted file mode 100644
index df5d096b3996d7754a75435428704b37833018ef..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/repaint/background-clip-content-box-repaint.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<style>
-#container {
- position: relative;
- width: 500px;
-}
-
-#dynamic-padding {
- position: absolute;
- left: 0;
- top: 0;
-
- box-sizing: border-box;
- width: 300px;
- height: 300px;
- padding: 10%;
-
- background-clip: content-box;
- background-color: yellow;
-}
-</style>
-<div id="container">
- <div id="dynamic-padding"></div>
-</div>
-This test verifies an element with percentage padding and background-clip:content-box correctly repaints when its padding changes due to container layout.
-<script src="../../resources/run-after-layout-and-paint.js"></script>
-<script>
-runAfterLayoutAndPaint(function() {
- document.getElementById("container").style.width = "100px";
-}, true);
-</script>

Powered by Google App Engine
This is Rietveld 408576698