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> |