summaryrefslogtreecommitdiffstats
path: root/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html')
-rw-r--r--Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html b/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html
deleted file mode 100644
index 3de413a5a..000000000
--- a/Tools/TestWebKitAPI/Tests/mac/acceptsFirstMouse.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html style="height: 200%;">
-<head>
- <style>
- img.selectable {
- width: 100px;
- height: 100px;
- display: block;
- background-color: gray;
- }
- </style>
-</head>
-<body style="margin: 0;">
- <img class="selectable">
- <img class="selectable" id="target">
- <img class="selectable">
- <script>
- var target = document.getElementById("target");
- getSelection().setBaseAndExtent(target, 0, target, 1);
- scrollBy(0, 100);
- </script>
-</body>
-</html>