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

Unified Diff: LayoutTests/platform/chromium/plugins/transformed-events.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/plugins/transformed-events.html
diff --git a/LayoutTests/platform/chromium/plugins/transformed-events.html b/LayoutTests/platform/chromium/plugins/transformed-events.html
deleted file mode 100644
index 2a63f0351bde8d400af98e8bf1c2132bfb7ca838..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/plugins/transformed-events.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<html>
-<head>
-<style>
- #plugin {
- width: 150px;
- height: 150px;
- -webkit-transform: rotate(90deg);
- }
-</style>
-</head>
-
-<body>
-<embed id="plugin" type="application/x-webkit-test-webplugin" accepts-touch="raw" print-event-details="true"></embed>
-<script>
-
- if (!window.testRunner || !window.eventSender) {
- document.write("This test requires DumpRenderTree.");
- } else {
- testRunner.dumpAsText();
-
- // Test touch events.
- var positionX = plugin.offsetLeft + plugin.offsetWidth - 10;
- var positionY = plugin.offsetTop + 10;
- eventSender.addTouchPoint(positionX, positionY);
- eventSender.touchStart();
- eventSender.updateTouchPoint(0, positionX - 5, positionY + 10);
- eventSender.touchMove();
- eventSender.releaseTouchPoint(0);
- eventSender.touchEnd();
-
- // Test mouse events.
- eventSender.mouseMoveTo(positionX, positionY);
- eventSender.mouseDown();
- eventSender.leapForward(10);
- eventSender.mouseMoveTo(positionX - 5, positionY + 10);
- eventSender.mouseUp();
- eventSender.mouseMoveTo(positionX, positionY);
- eventSender.mouseScrollBy(10, 0);
-
- // Test gesture events.
- eventSender.gestureTapDown(positionX, positionY);
- eventSender.gestureTap(positionX, positionY);
- }
-
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698