Implement Document#elementFromPoint

This commit is contained in:
Rizky Luthfianto 2016-03-01 02:23:07 +07:00
parent 3701edbf2b
commit 76678bbdae
9 changed files with 60 additions and 88 deletions

View file

@ -180,3 +180,8 @@ partial interface Document {
TouchList createTouchList(Touch... touches);
};
// https://drafts.csswg.org/cssom-view/#dom-document-elementfrompoint
partial interface Document {
Element? elementFromPoint(double x, double y);
};