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

Unified Diff: LayoutTests/fast/repaint/region-painting-in-composited-view-expected.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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: LayoutTests/fast/repaint/region-painting-in-composited-view-expected.html
diff --git a/LayoutTests/fast/repaint/region-painting-in-composited-view-expected.html b/LayoutTests/fast/repaint/region-painting-in-composited-view-expected.html
deleted file mode 100644
index 404b5e811b23ecc58af6c4b7e10d67770ddaafc3..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/repaint/region-painting-in-composited-view-expected.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!doctype html>
-<head>
-<title>Test for https://bugs.webkit.org/show_bug.cgi?id=102826</title>
-<style type="text/css">
-#region1, #region2 {
- position: absolute;
- top: 0px;
- left: 0px;
- width: 100px;
- height: 50px;
-}
-
-#region1 {
- left: 120px;
- background-color: red;
- /* We need a composited layer, to make the output
- exactly the same as the test file. */
- -webkit-transform: translate3d(0,0,0);
-}
-
-#region2 {
- background-color: green;
-}
-
-</style>
-<script src="resources/repaint.js" type="text/javascript"></script>
-<script>
-function repaintTest()
-{
- // Using the same repaint behavior, so that we get the same repaint area.
- document.getElementById('region1').style.backgroundColor = 'green';
-}
-</script>
-</head>
-<body onload="runRepaintTest();">
- <div id="region1"></div>
- <div id="region2"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698