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

Unified Diff: LayoutTests/platform/chromium/compositing/scissor-out-of-viewport.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/platform/chromium/compositing/scissor-out-of-viewport.html
diff --git a/LayoutTests/platform/chromium/compositing/scissor-out-of-viewport.html b/LayoutTests/platform/chromium/compositing/scissor-out-of-viewport.html
deleted file mode 100644
index 14d3595c733cad849e3e0acfca3105a4e124b26c..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/compositing/scissor-out-of-viewport.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<!-- This test has a 16px tall div with overflow:hidden set and a child image. When the test loads the div is scrolled out of view.
- The test is a pass if the image does not appear. -->
-<body style="overflow:hidden">
-<canvas style="position: absolute;"></canvas>
-<script>
- document.querySelector("canvas").getContext("2d");
-</script>
-<div style="top:0px; height: 16px; overflow: hidden; position: relative;">
- <img style="position: absolute; left: -16px;" id="i"></img>
-</div>
-<br>
-<div style="height:2000px"></div>
-<script>
-var can = document.createElement("canvas");
-can.width = can.height = 500;
-var ctx = can.getContext("2d");
-ctx.fillStyle = "red";
-ctx.fillRect(0, 0, 500, 500);
-document.getElementById("i").src = can.toDataURL();
-document.body.scrollTop = 50;
-if (window.testRunner)
- testRunner.dumpAsText(true);
-</script>

Powered by Google App Engine
This is Rietveld 408576698