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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/child-of-sub-pixel-offset-composited-layer.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/child-of-sub-pixel-offset-composited-layer.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/child-of-sub-pixel-offset-composited-layer.html b/third_party/WebKit/LayoutTests/paint/invalidation/spv2/child-of-sub-pixel-offset-composited-layer.html
deleted file mode 100644
index a76cf7274ab45b423f1ca7e59d15415d95d0903e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/paint/invalidation/spv2/child-of-sub-pixel-offset-composited-layer.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!-- Based on fast/repaint/child-of-sub-pixel-offset-composited-layer.html -->
-<!DOCTYPE html>
-<html>
-<head>
-<style>
-.container {
- transform: translateZ(0);
- position: absolute;
- top: 100px;
- left:100.5px;
- background-color: red;
-}
-
-#target {
- position: absolute;
- left: 0px;
- width: 10px;
- height: 10px;
- border: 2px solid red;
-}
-
-#target.green {
- border-color: green;
-}
-</style>
-<script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
-</head>
-<body onload="runPaintInvalidationTest();">
-<div class="container">
-<div id="target">
-</div>
-</div>
-<script>
-// This test ensures that children of a composited element with a sub-pixel offset are properly repainted.
-// The box should have a fully green border.
-function paintInvalidationTest() {
- var target = document.getElementById('target');
- target.classList.add('green');
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698