Merge pull request #430 from mvasin/patch-1

Fix a misused word
This commit is contained in:
Ilya Kantor 2018-06-07 16:56:37 +03:00 committed by GitHub
commit 073e844cbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ If we compare window coordinates versus CSS positioning, then there are obvious
But in CSS the `right` property means the distance from the right edge, and the `bottom` -- from the bottom edge.
If we just look at the picture below, we can see that in JavaScript it is not so. All window coordinates are counted from the upper-left corner, including these ones.
If we just look at the picture above, we can see that in JavaScript it is not so. All window coordinates are counted from the upper-left corner, including these ones.
```
## elementFromPoint(x, y) [#elementFromPoint]