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

Unified Diff: third_party/WebKit/LayoutTests/compositing/repaint/page-scale-repaint.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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/compositing/repaint/page-scale-repaint.html
diff --git a/third_party/WebKit/LayoutTests/compositing/repaint/page-scale-repaint.html b/third_party/WebKit/LayoutTests/compositing/repaint/page-scale-repaint.html
deleted file mode 100644
index 6c187be37fade69c3b8e7f2b55c19212e59de006..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/compositing/repaint/page-scale-repaint.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
- ::-webkit-scrollbar {
- width: 0px;
- height: 0px;
- }
-</style>
-</head>
-<body style="width: 4000px; height:10000px;background-image:url('resources/grid.png')" onload="runTest();">
-<script src="../../resources/run-after-layout-and-paint.js"></script>
-<script>
-// Under-invalidation checking is too slow for this test.
-if (window.internals)
- internals.runtimeFlags.paintUnderInvalidationCheckingEnabled = false;
-
-function runTest() {
- if (window.testRunner)
- testRunner.waitUntilDone();
- runAfterLayoutAndPaint(function() {
- if (window.internals) {
- window.internals.setPageScaleFactorLimits(0.5, 0.5);
- window.internals.setPageScaleFactor(0.5);
- }
- if (window.testRunner)
- testRunner.notifyDone();
- });
-}
-</script>
-<div style="transform:translateZ(0);"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698