Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / resources / iframe-onmousemove.html
blob9380b819eab3f81e449d8a9330aa7e671fe2083e
1 <html>
2 <head>
3 <style>
4 /* We center the square so as to simplify the eventSender logic in parent.runTest(). */
5 #test-container { margin: 0px auto; width: 128px; height: 128px; }
7 #square { display: table-cell; text-align: center; vertical-align: middle; width: inherit; height: inherit; color: black; border: 1px dashed; }
8 </style>
9 </head>
10 <body>
11 <div id="test-container">
12 <div id="square" onmousemove="parent.done()">Mouse over me.</div>
13 </div>
14 </body>
15 </html>