1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 14:55:08 +00:00
serenity/Userland/Libraries/LibWeb/Internals/Internals.idl
Aliaksandr Kalenik bf4e2f3e9c LibWeb: Add hit testing API in internals object
Introduces `internals.hitTest(x, y)` that is going to allow us write
tests for hit testing :)
2023-08-09 17:26:44 +02:00

6 lines
104 B
Text

[Exposed=Nobody] interface Internals {
undefined gc();
object hitTest(double x, double y);
};