
This reverts commit e52c30cbd5
.
It's highly possible that this test was flaky on CI due to mixing units
of seconds and milliseconds in the transient activation calculation.
Revert the workaround for that commit in an attempt to avoid needless
ad-hoc behavior.
18 lines
480 B
Text
18 lines
480 B
Text
#import <DOM/EventTarget.idl>
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
[Exposed=Nobody] interface Internals {
|
|
|
|
undefined signalTextTestIsDone();
|
|
undefined gc();
|
|
object hitTest(double x, double y);
|
|
|
|
undefined sendText(HTMLElement target, DOMString text);
|
|
undefined commitText();
|
|
|
|
undefined click(double x, double y);
|
|
undefined wheel(double x, double y, double deltaX, double deltaY);
|
|
|
|
boolean dispatchUserActivatedEvent(EventTarget target, Event event);
|
|
|
|
};
|