Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / resources / frame-dead-region-left.html
bloba0759c4e791879249ea7c5861b583a642ab13295
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <script>
5 // A position that hits "clickMe" link.
6 var X = 68;
7 var Y = 103;
9 function onLinkClick()
11 alert("SUCCESS -- the link was clicked");
12 return false; // Prevent default.
15 function runTest()
17 if (window.testRunner) {
18 eventSender.mouseMoveTo(X, Y);
19 eventSender.mouseDown();
20 eventSender.mouseUp();
23 </script>
24 <title>Frames Test</title>
25 <style type="text/css">
26 #clickMe {
27 position: absolute;
28 right: 0px;
29 top: 90px;
30 font-weight: bold;
31 font-size: 24px;
33 </style>
34 </head>
35 <body onload="runTest()">
36 <a id="clickMe" href="#" onclick="return onLinkClick()">Click Here</a>
37 </body>
38 </html>