Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / layers / resize-layer-deletion-crash.html
blob1f0a0aa58879021f683d5044855d47b67e8a1ecc
1 <html>
2 <head>
3 <script>
4 function test()
6 if (!window.testRunner)
7 return;
8 testRunner.dumpAsText();
9 document.body.offsetTop;
10 eventSender.mouseMoveTo(50, 50);
11 eventSender.mouseDown();
12 eventSender.mouseMoveTo(125, 125);
13 eventSender.mouseMoveTo(135, 135);
14 eventSender.mouseUp();
15 testRunner.notifyDone();
17 </script>
18 </head>
19 <body style="margin: 0" onload="test()">
20 <div id="q" style="width: 50px; height: 50px; overflow: hidden; resize: both; border: solid;"></div>
21 <div style="position: absolute; left: 120px; top: 120px; height: 100px; width: 20px; height: 20px; background-color: blue;" onmouseover="q.style.display='none';"></div>
22 <div style="position: absolute; left: 8px; right: 8p; top: 150px;">
23 <p>
24 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=16603">http://bugs.webkit.org/show_bug.cgi?id=16603</a>
25 Crash when resizing text field</i>.
26 </p>
27 <p>
28 Drag the bottom right corner of the black box over the blue square.
29 The black box should disappear but the browser should not crash.
30 </p>
31 </div>
32 </body>
33 </html>