Commit 440185f8 authored by Rafael Weinstein's avatar Rafael Weinstein

add some more sky api to fakesky stub implementation.

TBR=eseidel
BUG=

Review URL: https://codereview.chromium.org/987833002
parent 4dcb64a9
......@@ -122,9 +122,11 @@ class HTMLImageElement extends Element {
Object style = {};
}
class Event {
Event();
}
class Event {}
class PointerEvent extends Event {}
class GestureEvent extends Event {}
class WheelEvent extends Event {}
typedef EventListener(Event event);
......@@ -146,3 +148,12 @@ class Window {
Document document = new Document();
Window window = new Window();
class ClientRect {
double top
double right;
double bottomr;
double left;
double width;
double height;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment