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

Unified Diff: LayoutTests/fast/events/touch/touch-active-state.html

Issue 211423002: Remove old touch-event based hover/active tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove expected output Created 6 years, 9 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
« no previous file with comments | « no previous file | LayoutTests/fast/events/touch/touch-active-state-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/touch/touch-active-state.html
diff --git a/LayoutTests/fast/events/touch/touch-active-state.html b/LayoutTests/fast/events/touch/touch-active-state.html
deleted file mode 100644
index ed58455e2620e9a9141c4c64dcc4ea023afef8ea..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/events/touch/touch-active-state.html
+++ /dev/null
@@ -1,44 +0,0 @@
-<html>
-<script src="../../../resources/js-test.js"></script>
-<style type="text/css">
-#box {
- background-color:blue;
- width:100px;
- height:100px;
-}
-
-#box:active {
- visibility:hidden;
-}
-
-</style>
-<body onload="runTest();">
-<div id="box" ontouchstart="testComplete();">FAIL</div>
-
-<p id="description"></p>
-<div id="console"></div>
-
-<script type="text/javascript">
-description('Test touches set the active state.');
-
-function testComplete(event)
-{
- isSuccessfullyParsed();
- testRunner.notifyDone();
-}
-
-function runTest()
-{
- if (window.eventSender) {
- // Touch the center of the div.
- eventSender.addTouchPoint(50, 50);
- eventSender.touchStart();
- } else
- debug('This test requires DRT.');
-}
-
-if (window.testRunner)
- testRunner.waitUntilDone();
-</script>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/events/touch/touch-active-state-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698