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

Unified Diff: LayoutTests/fast/repaint/region-painting-composited-element.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-composited-element.html
diff --git a/LayoutTests/fast/repaint/region-painting-composited-element.html b/LayoutTests/fast/repaint/region-painting-composited-element.html
deleted file mode 100644
index 1da1e2cd94eb01d98a05cd899e694a3cbc2f6217..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/repaint/region-painting-composited-element.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!doctype html>
-<head>
-<title>Test for https://bugs.webkit.org/show_bug.cgi?id=102826</title>
-<script>
- if (window.testRunner)
- window.testRunner.overridePreference("WebKitCSSRegionsEnabled", "1");
-</script>
-<style type="text/css">
-#content {
- -webkit-flow-into: flow1;
-}
-
-#target {
- background-color: green;
- width: 100px;
- height: 50px;
- /* Force a composited layer. */
- -webkit-transform: translate3d(0,0,0);
-}
-
-#region1, #region2 {
- width: 100px;
- height: 50px;
- -webkit-flow-from: flow1;
-}
-
-#region1 {
- /* Make sure that the content of the first region will display in a totally
- different place than it would have been displayed if regions were not used. */
- background-color: red;
-}
-
-#region2 {
- background-color: green;
-}
-
-</style>
-</head>
-<body>
- <!-- Testing that the RenderObject is marked as part of the RenderFlowThread before it applies the first style.
- The test should paint two green rectangles. There should be no red. -->
- <div id="content">
- <div id="target"></div>
- </div>
- <div id="region1"></div><br />
- <div id="region2"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698