Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / doubleclick-crash.html
blob250b4950bb8b4905d64b1d6e96e60ca218c8ea2f
1 <html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpEditingCallbacks();
6 </script>
8 <style>
9 body { margin: 0; padding: 0 }
10 </style>
11 <script type="text/javascript">
12 function step4()
14 eventSender.mouseUp();
15 testRunner.notifyDone();
18 function step3()
20 eventSender.mouseDown();
21 window.setTimeout(step4, 1);
24 function step2()
26 eventSender.mouseUp();
27 window.setTimeout(step3, 100);
30 function step1()
32 eventSender.mouseDown();
33 window.setTimeout(step2, 1);
36 function step0()
38 eventSender.mouseMoveTo(50, 10);
39 window.setTimeout(step1, 1);
42 onload = step0;
43 testRunner.waitUntilDone();
44 </script>
45 </head>
46 <body>
47 <pre>
48 Test.
49 Test.
50 </body>
51 </html>
52 <!-- http://bugzilla.opendarwin.org/show_bug.cgi?id=3739 - only testing for crashing, not the actual results. -->