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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/hover-pseudo-borders.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/paint/invalidation/spv2/hover-pseudo-borders.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/hover-pseudo-borders.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/hover-pseudo-borders.html
deleted file mode 100644
index 1052e39d8e420ea35e0c5d6e6da22da767efdff5..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/hover-pseudo-borders.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!-- Based on fast/repaint/hover-pseudo-borders.html -->
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-.hitregion {
- width: 100px;
- height: 100px;
- background-color: red;
-}
-.hitregion:after {
- content: "";
- border: 40px solid;
- outline: 10px solid;
- position: absolute;
- width: 0;
- height: 0;
- margin-left: 140px;
- margin-top: 10px;
-}
-.hitregion:hover {
- background-color: green; /* Changes the left box's color. */
-}
-.hitregion:hover:after {
- color: green; /* Changes the right box's color. */
-}
-</style>
-<script src="resources/paint-invalidation-test.js"></script>
-<script>
-function paintInvalidationTest() {
- if (!window.testRunner)
- return;
- eventSender.mouseMoveTo(50, 50);
- eventSender.mouseDown();
- eventSender.mouseUp();
-}
-window.addEventListener("load", runPaintInvalidationTest);
-</script>
-</head>
-<body>
-<!--
- REGRESSION: :hover doesn't work on :after content with borders or outlines.
- To test this bug outside DRT, hover on the square below.
- This test passes if there are two green squares.
--->
-<div class="hitregion"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698