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

Unified Diff: LayoutTests/compositing/scroll-painted-composited-content.html

Issue 181653006: Remove testRunner.display() from most compositing/ tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert change to plugin test 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/compositing/scroll-painted-composited-content.html
diff --git a/LayoutTests/compositing/scroll-painted-composited-content.html b/LayoutTests/compositing/scroll-painted-composited-content.html
deleted file mode 100644
index 7ab54a59b472237dcda32b9d52f1ca974a0611c6..0000000000000000000000000000000000000000
--- a/LayoutTests/compositing/scroll-painted-composited-content.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Test scrolling with composited content that has already been painted</title>
- <style>
- body {
- width: 600px;
- }
- div {
- -webkit-transform: translateZ(0);
- width: 1000px;
- height: 800px;
- }
- </style>
-</head>
-<body>
- <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=52720">Bug 52720 - REGRESSION
- (r75987): Assertion failure in WebView::scrollBackingStore when scrolling page with composited
- content</a>. The test passes if it doesn't assert in Debug builds.</p>
-
- <div></div>
-
- <script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- // Force a paint so that the content will be painted at the current scroll offset (0x0)
- // before we scroll.
- testRunner.display();
- }
- window.scrollBy(300, 0);
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698