| Index: Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html
|
| diff --git a/Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html b/Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html
|
| deleted file mode 100644
|
| index 8ea866ba983a43b2dea3a6b74f45114ad7102c22..0000000000000000000000000000000000000000
|
| --- a/Tools/TestWebKitAPI/Tests/WebKit2/file-with-anchor.html
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -<html>
|
| -<head>
|
| - <script>
|
| - function clickLink()
|
| - {
|
| - var evt = document.createEvent("MouseEvent");
|
| - evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
|
| - var link = document.querySelector('a');
|
| - link.dispatchEvent(evt);
|
| - }
|
| - </script>
|
| -</head>
|
| -<body>
|
| - <a href="#anchor">Link to anchor</a><br>
|
| - In between.<br>
|
| - <span id="anchor">Anchor</span><br>
|
| - After the anchor.<br>
|
| - </body>
|
| -</html>
|
|
|