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

Unified Diff: LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html

Issue 708213002: Remove the HasOwnBackingButPaintsIntoAncestor compositing state. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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: LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html
diff --git a/LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html b/LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html
deleted file mode 100644
index 65b7530cd207f102b2fc689c1f761ea1e690adf0..0000000000000000000000000000000000000000
--- a/LayoutTests/compositing/repaint/repaint-into-ancestor-after-layout.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE html>
-<html>
-
-<head>
-<style>
-
-#parent {
- position: absolute;
- z-index: 1;
- top: 50px;
- left: 50px;
- width: 100px;
- height: 100px;
- overflow: auto;
- background-color: lime;
-}
-
-<!-- hover to see how the test works/breaks when testing interactively -->
-#parent:hover {
- top: 40px;
-}
-
-#child {
- background-color: cyan;
- width: 50px;
- height: 50px;
- transform: translateZ(0);
-}
-</style>
-
-<script src="../../fast/repaint/resources/text-based-repaint.js"></script>
-<script>
- function repaintTest() {
- document.getElementById('parent').style.top = "10px";
- }
-
- runRepaintTest();
-</script>
-</head>
-
-<body>
- <!--
- https://code.google.com/p/chromium/issues/detail?id=256200
- The parent element is set up uniquely such that it is composited, but it
- still paints into its composited ancestor. When it works correctly, the
- parent element should repaint correctly when its position is changed.
- -->
- <div id="parent">
- <div id="child"></div>
- </div>
-</body>
-
-</html>

Powered by Google App Engine
This is Rietveld 408576698