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

Unified Diff: LayoutTests/fast/repaint/region-painting-via-layout.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-via-layout.html
diff --git a/LayoutTests/fast/repaint/region-painting-via-layout.html b/LayoutTests/fast/repaint/region-painting-via-layout.html
deleted file mode 100644
index e5b662e4804727754f64b5f2730db98d42acf8ba..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/repaint/region-painting-via-layout.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-<head>
-<title>Test for https://bugs.webkit.org/show_bug.cgi?id=69932</title>
-<script>
- if (window.testRunner)
- window.testRunner.overridePreference("WebKitCSSRegionsEnabled", "1");
-</script>
-<style type="text/css">
-#content {
- -webkit-flow-into: flow1;
- position:relative;
- padding-top:1000px;
-}
-
-#target { height: 200px; background-color: red }
-
-#region1, #region2, #region3 {
- -webkit-flow-from: flow1;
-}
-
-#region1 {
- width: 300px;
- height: 1000px;
- background-color:red
-}
-
-#region2 {
- width: 100%;
- height: 180px;
- border:1px solid black;
- background-color:red
-}
-
-</style>
-<script src="resources/repaint.js" type="text/javascript"></script>
-<script>
-function repaintTest()
-{
- document.getElementById('target').style.fontSize = '36px';
- document.getElementById('target').style.backgroundColor = 'green';
-}
-</script>
-</head>
-<body onload="runRepaintTest();">
- <div id="content"><div><div id="target"></div></div>
- </div>
- <div style="position:absolute;width:0;height:0;overflow:hidden">
- <div id="region1"></div>
- </div>
-
- <div id="region2"></div>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698