mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:55:08 +00:00

Introduces `internals.hitTest(x, y)` that is going to allow us write tests for hit testing :)
6 lines
104 B
Text
6 lines
104 B
Text
[Exposed=Nobody] interface Internals {
|
|
|
|
undefined gc();
|
|
object hitTest(double x, double y);
|
|
|
|
};
|