/irc-logs / mozilla / #accessibility / 2015-03-03 / end

Options:

Previous day, Next day

  1. # Session Start: Tue Mar 03 00:00:00 2015
  2. # Session Ident: #accessibility
  3. # [00:21] <@firebot> dholbert@mozilla.com changed the Component on bug 1138700 from Layout to Disability Access APIs.
  4. # [00:21] <@firebot> dholbert@mozilla.com changed the Resolution on bug 1138700 from --- to DUPLICATE.
  5. # [00:22] <@firebot> dholbert@mozilla.com changed the Status on bug 1138700 from NEW to RESOLVED.
  6. # [00:22] <@firebot> https://bugzil.la/1138700 — DUPLICATE, nobody@mozilla.org — crash when scrolling wired.com's new UI, with e10s enabled, sometimes inside of mozilla::ContainerSt
  7. # [01:07] <@eeejay> Funktr0n: the menu you are working on is the sandwich button on the upper right?
  8. # [01:16] * Quits: Aleksej (Aleksej@moz-877.ces.14.176.IP) (Quit: WeeChat 1.0.1)
  9. # [01:39] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
  10. # [01:46] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  11. # [01:48] <Funktr0n> eeejay: it's a submenu of that, but yeah
  12. # [01:49] <Funktr0n> eeejay: sandwich->self-timer->options
  13. # [01:49] <@eeejay> Funktr0n: we need to get rid of the heading roles
  14. # [01:50] <Funktr0n> eeejay: okay, is that what's causing the hangup?
  15. # [01:50] <@eeejay> Funktr0n: nope. that's just an observation
  16. # [01:51] <Funktr0n> eeejay: gotcha, yeah, I had planned on going through and checking a few things around the app as I worked through it. I know there are multiple bugs so I didn't want to try to tackle too many things in one go
  17. # [01:58] <Funktr0n> eeejay: that's actually a good question I've been meaning to ask... is it generally okay to propose fixes for things that aren't listed in the bug description when submitting a patch or is it better to file a new bug?
  18. # [02:01] * Quits: scott_gonzalez (scott_gonza@moz-mhe.gsn.149.12.IP) (Connection closed)
  19. # [02:01] * Joins: scott_gonzalez (scott_gonza@moz-mhe.gsn.149.12.IP)
  20. # [02:22] * Quits: scott_gonzalez (scott_gonza@moz-mhe.gsn.149.12.IP) (Ping timeout: 121 seconds)
  21. # [02:34] <@eeejay> Funktr0n: in this case, i think it is fine in the bug
  22. # [02:34] <@eeejay> Funktr0n: a quick fix would be to give role=presentation to the h element
  23. # [02:34] <@eeejay> s
  24. # [02:40] * yzen is now known as yzen_
  25. # [02:43] <@eeejay> Funktr0n: never mind what i said, i see here that it is in a different part. the sub menus are ok and there are no headers
  26. # [02:48] <@eeejay> Funktr0n: ping
  27. # [02:49] <Funktr0n> eeejay: hey, yeah I'm here
  28. # [02:49] <Funktr0n> eeejay: okay to what you said a second ago
  29. # [02:49] <@eeejay> Funktr0n: cool. i think i see the issue
  30. # [02:49] <Funktr0n> eeejay: what is it?
  31. # [02:51] <@eeejay> Funktr0n: this is a "nested" dialog where one menu goes away, and another comes in its place. we keep a placeholder for where the cursor was before a dialog shows up, but in this case it ends up on an empty and hidden object ".timer_count". So what we were saying earlier makes sense. I think we should just be more mindful about focus hre
  32. # [02:51] <@eeejay> here
  33. # [02:51] <@eeejay> Funktr0n: but i think it goes beyond the scope of this patch
  34. # [02:52] <@eeejay> Funktr0n: if we could make the HUD buttons proper buttons that could take focus, I think the focus will be preserved on the sandwich button and the cursor will return there
  35. # [02:52] <@eeejay> Funktr0n: and as far as i can see we have no bug open for localizing and fixing those buttons, so I am doing that now, and will open a bug
  36. # [02:52] <@eeejay> Funktr0n: we will see if it fixes the cursor issue you see in your patch.
  37. # [02:54] <Funktr0n> eeejay: okay so the sandwich icon, if using a proper button role, will take focus precedence over the hidden/empty ".timer_count" element that the VC is currently landing on after the menu is destroyed?
  38. # [02:56] <@eeejay> not automatically. need to add tabindex attribute
  39. # [02:57] <Funktr0n> eeejay: will other items need tabindex too then?
  40. # [02:58] <@eeejay> Funktr0n: for consistency, i'll add them. but typically we don't really care too much about keyboard focus
  41. # [02:59] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  42. # [03:00] <Funktr0n> eeejay: okay, I guess I'm just slightly confused how tabindex is influencing the VC here. Are you just deliberately attempting to switch focus to avoid the VC jumping on ".timer_count" or is there something in the traversal rules that gives tabindex elements precedence over other things?
  43. # [03:01] <@eeejay> Funktr0n: i am hypothesizing, lets see if it works :)
  44. # [03:02] <Funktr0n> eeejay: okay :)
  45. # [03:06] * Joins: scott_gonzalez (scott_gonza@moz-5t7jkp.fios.verizon.net)
  46. # [03:07] <@eeejay> Funktr0n: yeah, it doesn't work because the menu button gets successfully hidden
  47. # [03:07] <@eeejay> and unfocused
  48. # [03:10] <Funktr0n> eeejay: okay, do you think it might be possible to modify the order of element destruction... I haven't checked but I'm thinking maybe if we destroy the options-menu first and then the sub-menu second, perhaps the VC won't attempt to jump to that ".timer_count" spot?
  49. # [03:12] <@eeejay> Funktr0n: I wouldn't worry about it. its not worth it. we need to fix the autmove, it actually might not be that hard.
  50. # [03:14] <@eeejay> Funktr0n: need to run out
  51. # [03:15] <Funktr0n> eeejay: okay, let me know about any progress with automove. I'd like to learn a little more about how the VC works as a whole so it would be good to see what adjustments are being made
  52. # [03:16] <Funktr0n> eeejay: sounds good, I've gotta run too. I'll be around tomorrow though!
  53. # [03:18] <@eeejay> night!
  54. # [04:15] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Connection closed)
  55. # [05:15] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  56. # [05:16] * Joins: icaaq (icaaq@moz-4a4bca.cust.bredbandsbolaget.se)
  57. # [05:20] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  58. # [05:33] * Quits: icaaq (icaaq@moz-4a4bca.cust.bredbandsbolaget.se) (Quit: 10-56 Intoxicated pedestrian, over and out)
  59. # [05:34] * Joins: icaaq (icaaq@moz-4a4bca.cust.bredbandsbolaget.se)
  60. # [06:16] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  61. # [06:20] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  62. # [07:04] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Connection closed)
  63. # [07:04] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  64. # [07:04] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
  65. # [07:06] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  66. # [07:10] * Quits: @yzen_ (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
  67. # [07:11] * Joins: ioanachiorean (ioanachiore@moz-ohb.65e.79.82.IP)
  68. # [07:13] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
  69. # [07:17] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  70. # [07:21] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  71. # [07:49] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  72. # [07:54] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
  73. # [07:58] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  74. # [08:03] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  75. # [08:03] * Tomcat|afk is now known as Tomcat|sheriffduty
  76. # [08:06] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
  77. # [08:06] * ChanServ sets mode: +o yzen
  78. # [08:08] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
  79. # [08:11] * Quits: @yzen (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
  80. # [08:18] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  81. # [08:22] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  82. # [09:06] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Connection closed)
  83. # [09:16] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  84. # [09:19] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  85. # [09:23] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  86. # [09:56] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
  87. # [09:56] * ChanServ sets mode: +o yzen
  88. # [10:00] * Quits: @yzen (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
  89. # [10:20] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  90. # [10:25] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  91. # [10:43] <@firebot> New Core - Disability Access APIs bug 1138845 filed by mh+mozilla@glandium.org.
  92. # [10:43] <@firebot> https://bugzil.la/1138845 — NEW, mh+mozilla@glandium.org — Gtk+3 builds on elm can't run tests
  93. # [11:05] * Joins: Gijs (chatzilla@moz-be1.e16.80.5.IP)
  94. # [11:05] * Joins: agibson (agibson@moz-1bc.kg5.255.62.IP)
  95. # [11:20] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  96. # [11:23] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
  97. # [11:24] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  98. # [11:45] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
  99. # [11:45] * ChanServ sets mode: +o yzen
  100. # [11:49] * Quits: @yzen (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
  101. # [11:54] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  102. # [11:55] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
  103. # [12:21] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  104. # [12:25] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  105. # [12:25] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  106. # [12:30] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  107. # [12:52] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
  108. # [13:18] * Joins: agibson_ (agibson@moz-1bc.kg5.255.62.IP)
  109. # [13:21] * Quits: agibson (agibson@moz-1bc.kg5.255.62.IP) (Ping timeout: 121 seconds)
  110. # [13:22] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  111. # [13:26] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  112. # [13:34] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
  113. # [13:34] * ChanServ sets mode: +o yzen
  114. # [13:38] * Quits: @yzen (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
  115. # [13:39] * Quits: agibson_ (agibson@moz-1bc.kg5.255.62.IP) (Quit: )
  116. # [14:19] * Joins: agibson (agibson@moz-1bc.kg5.255.62.IP)
  117. # [14:20] * Joins: newtron (newtron@moz-1ojn08.dsl.teksavvy.com)
  118. # [14:24] * Quits: newtron (newtron@moz-1ojn08.dsl.teksavvy.com) (Ping timeout: 121 seconds)
  119. # [14:26] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  120. # [14:31] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  121. # [15:11] * Joins: newtron (newtron@moz-6lh.c31.71.199.IP)
  122. # [15:26] * Joins: surkov (surkov@moz-i5m.05u.207.66.IP)
  123. # [15:26] * ChanServ sets mode: +o surkov
  124. # [15:29] * Joins: anvk (anovak@moz-871.mvk.11.204.IP)
  125. # [15:30] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
  126. # [15:30] * ChanServ sets mode: +o yzen
  127. # [15:42] * Quits: scott_gonzalez (scott_gonza@moz-5t7jkp.fios.verizon.net) (Client exited)
  128. # [15:48] * Joins: scott_gonzalez (scott_gonza@moz-5t7jkp.fios.verizon.net)
  129. # [15:49] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
  130. # [16:07] * Joins: agibson_ (agibson@moz-1bc.kg5.255.62.IP)
  131. # [16:09] * Quits: agibson (agibson@moz-1bc.kg5.255.62.IP) (Ping timeout: 121 seconds)
  132. # [16:13] * agibson_ is now known as agibson
  133. # [16:14] * Joins: SteveF (chatzilla@moz-ge9.fkl.133.63.IP)
  134. # [16:41] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
  135. # [16:41] * ChanServ sets mode: +qo davidb davidb
  136. # [16:41] <~davidb> heyo
  137. # [16:41] <~davidb> nothing like a good teeth scraping in the morning
  138. # [16:43] * davidb is now known as davidb|afk
  139. # [16:44] * Quits: newtron (newtron@moz-6lh.c31.71.199.IP) (Connection closed)
  140. # [16:56] * Joins: newtron (newtron@moz-6lh.c31.71.199.IP)
  141. # [16:57] <SteveF> davidb: only way to remove the pubes
  142. # [16:58] <SteveF> davidb: and top of the morning to you! me basking in san diego sun
  143. # [17:05] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
  144. # [17:14] * Tomcat|sheriffduty is now known as Tomcat|afk
  145. # [17:25] * davidb|afk is now known as davidb
  146. # [17:25] <~davidb> LOL
  147. # [17:26] * ~davidb consults hr violation handbook
  148. # [17:26] * davidb is now known as davidb|afk
  149. # [17:26] * davidb|afk is now known as davidb
  150. # [17:59] <@firebot> jmathies@mozilla.com cancelled needinfo?(darren1olivier@hotmail.com) on bug 1115956.
  151. # [17:59] <@firebot> https://bugzil.la/1115956 — NEW, nobody@mozilla.org — E10S disabled forever when a11y was formerly active (Options: "An accessibility tool is active")
  152. # [18:03] * davidb is now known as davidb|afk
  153. # [18:09] * Quits: anvk (anovak@moz-871.mvk.11.204.IP) (Quit: Leaving.)
  154. # [18:22] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  155. # [18:27] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  156. # [18:43] * davidb|afk is now known as davidb
  157. # [18:55] * Quits: icaaq (icaaq@moz-4a4bca.cust.bredbandsbolaget.se) (Quit: 10-79 Notify coroner, over and out)
  158. # [19:01] * Quits: agibson (agibson@moz-1bc.kg5.255.62.IP) (Quit: )
  159. # [19:03] * Joins: MarcoZ (marco.zehe@moz-ge9.fkl.133.63.IP)
  160. # [19:03] * ChanServ sets mode: +ao MarcoZ MarcoZ
  161. # [19:04] <&MarcoZ> Hi there!
  162. # [19:07] <~davidb> MarcoZ, heyo!
  163. # [19:07] <~davidb> how's SD?
  164. # [19:08] <~davidb> surkov, are you planning on attending the UAIG/AAPI meeting at 3?
  165. # [19:08] <@surkov> davidb: I didn’t planned but I didn’t know about it, is there agenda?
  166. # [19:09] <~davidb> surkov, oh actually it is cancelled this week due to CSUN
  167. # [19:09] <@surkov> ok
  168. # [19:10] <@firebot> mzehe@mozilla.com requested needinfo from surkov.alexander@gmail.com on bug 1138487.
  169. # [19:10] <@firebot> https://bugzil.la/1138487 — NEW, nobody@mozilla.org — Intermittent test_general.xul | Assertion count 1 is greater than expected (No text container for fo
  170. # [19:11] <&MarcoZ> davidb: Hi! Nice and sunny and warm! :)
  171. # [19:11] <~davidb> nice
  172. # [19:15] <&MarcoZ> surkov: Thanks for that super quick turn-around for Mac! I will soon start hacking on bug 1137648 now. :)
  173. # [19:15] <@firebot> https://bugzil.la/1137648 — UNCONFIRMED, nobody@mozilla.org — Bluetooth GPS receiver
  174. # [19:16] <&MarcoZ> Eegh, bug 1137748.
  175. # [19:16] <@firebot> https://bugzil.la/1137748 — NEW, nobody@mozilla.org — Add and adjust roles, sub roles, and role descriptions, to be in line with WebKit's exposed stuff
  176. # [19:16] <@surkov> MarcoZ: yw!
  177. # [19:16] <@firebot> surkov.alexander@gmail.com cancelled needinfo?(surkov.alexander@gmail.com) on bug 1138487.
  178. # [19:22] * Joins: anvk (anovak@moz-871.mvk.11.204.IP)
  179. # [19:23] <@firebot> New Core - Disability Access APIs bug 1139049 filed by surkov.alexander@gmail.com.
  180. # [19:23] <@firebot> https://bugzil.la/1139049 — NEW, nobody@mozilla.org — turn EnumRoleAccessible into template
  181. # [19:42] * Joins: icaaq (icaaq@moz-4a4bca.cust.bredbandsbolaget.se)
  182. # [19:47] * Quits: @eeejay (eeejay@moz-04n88s.yourbnc.co.uk) (Ping timeout: 121 seconds)
  183. # [19:50] * Joins: eeejay (eeejay@moz-04n88s.yourbnc.co.uk)
  184. # [19:51] * Quits: @yzen (yzen@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
  185. # [19:59] * davidb is now known as davidb|afk
  186. # [20:00] * Joins: MarcoZ_ (marco.zehe@moz-ge9.fkl.133.63.IP)
  187. # [20:02] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
  188. # [20:02] * Quits: &MarcoZ (marco.zehe@moz-ge9.fkl.133.63.IP) (Ping timeout: 121 seconds)
  189. # [20:02] * MarcoZ_ is now known as MarcoZ
  190. # [20:04] * Joins: MarcoZ_ (marco.zehe@moz-ge9.fkl.133.63.IP)
  191. # [20:04] * davidb|afk is now known as davidb
  192. # [20:06] * Quits: MarcoZ (marco.zehe@moz-ge9.fkl.133.63.IP) (Ping timeout: 121 seconds)
  193. # [20:06] * MarcoZ_ is now known as MarcoZ
  194. # [20:09] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
  195. # [20:09] * ChanServ sets mode: +o yzen
  196. # [20:11] * Quits: MarcoZ (marco.zehe@moz-ge9.fkl.133.63.IP) (Ping timeout: 121 seconds)
  197. # [20:24] * Joins: agibson (agibson@moz-j04gi9.cable.virginm.net)
  198. # [20:26] * Joins: slee (chatzilla@moz-sn3nro.sndgca.sbcglobal.net)
  199. # [20:27] * Quits: slee (chatzilla@moz-sn3nro.sndgca.sbcglobal.net) (Quit: ChatZilla 0.9.91.1 [Firefox 35.0.1/20150122214805])
  200. # [20:28] * Quits: agibson (agibson@moz-j04gi9.cable.virginm.net) (Quit: )
  201. # [20:31] * Quits: anvk (anovak@moz-871.mvk.11.204.IP) (Quit: Leaving.)
  202. # [20:59] * Quits: SteveF (chatzilla@moz-ge9.fkl.133.63.IP) (Ping timeout: 121 seconds)
  203. # [21:05] * Joins: SteveF (chatzilla@moz-ge9.fkl.133.63.IP)
  204. # [21:16] * Quits: SteveF (chatzilla@moz-ge9.fkl.133.63.IP) (Ping timeout: 121 seconds)
  205. # [21:22] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
  206. # [21:23] * davidb is now known as davidb|afk
  207. # [21:27] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
  208. # [21:30] * davidb|afk is now known as davidb

Previous day, Next day

Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn