diff --git a/firefox-patches/patches-60/blur b/firefox-patches/patches-60/blur index 1db746b873604c482e977fb57a1959ec4ea58ec2..e643250ea649700b3233d840389c73a31ef40cb8 100644 --- a/firefox-patches/patches-60/blur +++ b/firefox-patches/patches-60/blur @@ -1,5 +1,7 @@ Fix tab focus when tabbing through an element that refuses focus +Fix pending commiting + # HG changeset patch # User Neil Deakin # Parent 76376169669fbc390d1cd297d4a3412f15f68461 diff --git a/firefox-patches/patches-60/control-enter b/firefox-patches/patches-60/control-enter index 8712339f745767a2763534e0b9ffdb3e99eccfc5..b9cb012833c8e9941590e482c4b899f9ec1051fd 100644 --- a/firefox-patches/patches-60/control-enter +++ b/firefox-patches/patches-60/control-enter @@ -1,3 +1,7 @@ +Fix announce of control-enter, control-tab, etc + +Fix pending submission and commiting to gtk before submitting to firefox & thunderbird + commit b2d9ab56ace0f4ceeac9e0d23f8c09e4cd70f2b6 Author: Samuel Thibault Date: Fri Feb 15 14:45:18 2019 +0100 diff --git a/firefox-patches/patches-60/entry-empty b/firefox-patches/patches-60/entry-empty new file mode 100644 index 0000000000000000000000000000000000000000..9cdfe6391c4d602ce384248c8c1b33e5ce0a5843 --- /dev/null +++ b/firefox-patches/patches-60/entry-empty @@ -0,0 +1,30 @@ +Fix bogus zoom movement when entry is empty + +Integrated in firefox 62 + +# HG changeset patch +# User Samuel Thibault +# Date 1527087753 -7200 +# Wed May 23 17:02:33 2018 +0200 +# Branch 0-0-text-empty +# Node ID 671db2eaa822daab7d15c25d4aab3b793a0a457f +# Parent d36cd8bdbc5c0df1d1d7a167f5fedb95c3a3648e +Bug 1319273 Accessible: Make TextBounds return rect of whole frame if content is empty r=asurkov + +diff --git a/accessible/generic/HyperTextAccessible.cpp b/accessible/generic/HyperTextAccessible.cpp +--- a/accessible/generic/HyperTextAccessible.cpp ++++ b/accessible/generic/HyperTextAccessible.cpp +@@ -1178,6 +1178,13 @@ HyperTextAccessible::TextBounds(int32_t + return nsIntRect(); + } + ++ if (CharacterCount() == 0) { ++ nsPresContext* presContext = mDoc->PresContext(); ++ // Empty content, use our own bound to at least get x,y coordinates ++ return GetFrame()->GetScreenRectInAppUnits(). ++ ToNearestPixels(presContext->AppUnitsPerDevPixel()); ++ } ++ + int32_t childIdx = GetChildIndexAtOffset(startOffset); + if (childIdx == -1) return nsIntRect(); + diff --git a/firefox-patches/patches-60/jumpedline b/firefox-patches/patches-60/jumpedline index e1ce0877fa0c9f4405527a86b203c5c8d24e67b3..5b69e0145ecba6e05723790bbfc308ba6be45edf 100644 --- a/firefox-patches/patches-60/jumpedline +++ b/firefox-patches/patches-60/jumpedline @@ -1,5 +1,7 @@ Fix word navigation around warped lines +Being rewritten + # HG changeset patch # User Samuel Thibault # Date 1548856422 -3600 diff --git a/firefox-patches/patches-60/scrollsubstringto b/firefox-patches/patches-60/scrollsubstringto index 23c655262a1848498059e4c620e9ed401d499701..0e7d01b5c1a861db472238bdbea68db9a1dc3a18 100644 --- a/firefox-patches/patches-60/scrollsubstringto +++ b/firefox-patches/patches-60/scrollsubstringto @@ -1,5 +1,7 @@ Support scrollsubstringto ATK API +Integrated in firefox 66 + # HG changeset patch # User Samuel Thibault # Date 1548531533 -3600 diff --git a/firefox-patches/patches-60/scrollto b/firefox-patches/patches-60/scrollto index 63ad55bf92027ea7bb464f9fd9ea084299ae3e24..3fa52d47ddf946d64b23cbdc63ec608b36ec5527 100644 --- a/firefox-patches/patches-60/scrollto +++ b/firefox-patches/patches-60/scrollto @@ -1,5 +1,7 @@ Support scrollto ATK API +Integrated in firefox 62 + # HG changeset patch # User Samuel Thibault # Date 1525269333 -7200 diff --git a/firefox-patches/patches-60/setcaret b/firefox-patches/patches-60/setcaret index 71041cf19b109c6d54f24610ec38db67e59ad1b8..3c172c9d1f523ecc30448eb253eed4c0801a5e53 100644 --- a/firefox-patches/patches-60/setcaret +++ b/firefox-patches/patches-60/setcaret @@ -1,5 +1,7 @@ Work around text offset issue around list bullets +Still ongoing work + # HG changeset patch # User Samuel Thibault # Date 1533116635 -7200 diff --git a/firefox-patches/patches-60/twisties b/firefox-patches/patches-60/twisties index ed70d3cea28f8c21feab09b01ce6a60ae2791503..a943f0c24e5d00ad903e000739db69414b5e78d5 100644 --- a/firefox-patches/patches-60/twisties +++ b/firefox-patches/patches-60/twisties @@ -1,5 +1,7 @@ Fix visibility of twisties +Integrated in firefox 63 + Bug 1376756 gtk: while drawing nsTreeBodyFrame, fetch current row attributes for proper style rendering r=karlt --- diff --git a/firefox-patches/series-60 b/firefox-patches/series-60 index ac5df2c34b1cc5854009c8bfc923cc44227b9a67..42b676a865a313ac7c0116cf5602ba44884cc9db 100644 --- a/firefox-patches/series-60 +++ b/firefox-patches/series-60 @@ -1,3 +1,4 @@ +entry-empty twisties blur #setcaret diff --git a/firefox-patches/version b/firefox-patches/version index 0cfbf08886fca9a91cb753ec8734c84fcbe52c9f..00750edc07d6415dcc07ae0351e9397b0222b7ba 100644 --- a/firefox-patches/version +++ b/firefox-patches/version @@ -1 +1 @@ -2 +3 diff --git a/thunderbird-patches/patches-52/control-enter b/thunderbird-patches/patches-52/control-enter index a84de0b092999051a5937f8020c8818fefc79073..1f39befce0213c86fdd8c82672c3532a829fddfe 100644 --- a/thunderbird-patches/patches-52/control-enter +++ b/thunderbird-patches/patches-52/control-enter @@ -1,3 +1,5 @@ +Fix announce of control-enter, control-tab, etc + commit b2d9ab56ace0f4ceeac9e0d23f8c09e4cd70f2b6 Author: Samuel Thibault Date: Fri Feb 15 14:45:18 2019 +0100 diff --git a/thunderbird-patches/patches-60/control-enter b/thunderbird-patches/patches-60/control-enter index e5129c547c6bc1ed6673e3a178ed64745a8aea94..d1007aafca1f9a07f910fc3c7933265abf12f463 100644 --- a/thunderbird-patches/patches-60/control-enter +++ b/thunderbird-patches/patches-60/control-enter @@ -1,3 +1,5 @@ +Fix announce of control-enter, control-tab, etc + commit b2d9ab56ace0f4ceeac9e0d23f8c09e4cd70f2b6 Author: Samuel Thibault Date: Fri Feb 15 14:45:18 2019 +0100