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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/repaint-during-resize-no-flex.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/css3/flexbox/repaint-during-resize-no-flex.html
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/repaint-during-resize-no-flex.html b/third_party/WebKit/LayoutTests/css3/flexbox/repaint-during-resize-no-flex.html
deleted file mode 100644
index b5506d503b1555ae0abe074983741824b0b7ec89..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/css3/flexbox/repaint-during-resize-no-flex.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<link rel="stylesheet" href="resources/flexbox.css">
-<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
-<style>
-body {
- margin: 0;
-}
-.flexbox {
- background: #333;
-}
-.flex-item {
- height: 50px;
- margin: 20px;
- background: #eee;
- width: 10px;
-}
-
-.width {
- width:50px;
-}
-</style>
-</head>
-<body>
-<div class="flexbox">
- <div id="flex-item-1" class="flex-item"></div>
- <div class="flex-item"></div>
- <div class="flex-item"></div>
-</div>
-<script>
-function repaintTest() {
- var div = document.getElementById("flex-item-1");
- div.classList.add("width");
-}
-window.onload = function() {
- if (!window.testRunner) {
- document.body.appendChild(document.createTextNode(
- "Tests to make sure that when changing the size of one flex item changes the "
- + "location of another flex item, we properly repaint. The repaint rect should "
- + "include the three flex items."));
- }
- window.enablePixelTesting = true;
- runRepaintTest();
-};
-</script>
-</body></html>

Powered by Google App Engine
This is Rietveld 408576698