Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Pointer Events for Firefox for Android #9168

Merged
merged 1 commit into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/Element.json
Original file line number Diff line number Diff line change
Expand Up @@ -4573,7 +4573,7 @@
],
"firefox_android": [
{
"version_added": false
"version_added": "79"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A recurring question I've got: a lot (all?) of these features land on Desktop in 59, but in 79 on Android. Is it right that Fennec never enabled Pointer Events by default, but Fenix did?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, the features got enabled at different times. they eventually got enabled for Fenix in version 70: see https://bugzilla.mozilla.org/show_bug.cgi?id=1507495, but Fenix was not publicly released until 79.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, great. Thank you!

},
{
"version_added": "41",
Expand Down Expand Up @@ -6414,7 +6414,7 @@
],
"firefox_android": [
{
"version_added": false
"version_added": "79"
},
{
"version_added": "41",
Expand Down
27 changes: 16 additions & 11 deletions api/Navigator.json
Original file line number Diff line number Diff line change
Expand Up @@ -1475,17 +1475,22 @@
]
}
],
"firefox_android": {
"version_added": "29",
"flags": [
{
"type": "preference",
"name": "dom.w3c_pointer_events.enabled",
"value_to_set": "true"
}
],
"notes": "See <a href='https://bugzil.la/1426786'>bug 1426786</a>."
},
"firefox_android": [
{
"version_added": "79"
},
{
"version_added": "29",
"flags": [
{
"type": "preference",
"name": "dom.w3c_pointer_events.enabled",
"value_to_set": "true"
}
],
"notes": "See <a href='https://bugzil.la/1426786'>bug 1426786</a>."
}
],
"ie": [
{
"version_added": "11"
Expand Down
Loading