forked from LadybirdBrowser/ladybird
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LibWeb: Implement the "fire a focus event" spec
We weren't setting the focus event's composed flag and view field correctly.
- Loading branch information
Showing
5 changed files
with
49 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
focus target=<INPUT id="a"> | ||
focusin target=<INPUT id="a"> | ||
blur target=<INPUT id="a"> | ||
focusout target=<INPUT id="a"> | ||
focus target=<INPUT id="b"> | ||
focusin target=<INPUT id="b"> | ||
focus target=<INPUT id="a"> bubbles=false composed=true | ||
focusin target=<INPUT id="a"> bubbles=true composed=true | ||
blur target=<INPUT id="a"> bubbles=false composed=true | ||
focusout target=<INPUT id="a"> bubbles=true composed=true | ||
focus target=<INPUT id="b"> bubbles=false composed=true | ||
focusin target=<INPUT id="b"> bubbles=true composed=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters