/irc-logs / mozilla / #accessibility / 2015-04-13 / end
Options:
Previous day, Next day
- # Session Start: Mon Apr 13 00:00:00 2015
- # Session Ident: #accessibility
- # [00:39] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
- # [00:39] * ChanServ sets mode: +o yzen
- # [01:03] * yzen is now known as yzen_
- # [01:07] * Quits: @yzen_ (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # [01:15] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [01:22] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [01:42] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [01:55] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [03:48] * Joins: kkus (kkus@moz-baj4jj.74.srtnet.com)
- # [03:58] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:01] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Connection closed)
- # [04:10] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
- # [04:10] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Connection closed)
- # [04:11] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [04:59] * Funktr0n|awy is now known as Funktr0n
- # [05:01] <Funktr0n> eeejay: are you around by any chance?
- # [05:36] * Quits: icaaq (icaaq@moz-2d0rfn.cust.bredbandsbolaget.se) (Quit: 10-79 Notify coroner, over and out)
- # [06:12] <eeejay> Funktr0n: yo
- # [06:13] <eeejay> Funktr0n: getting primed for GoT
- # [06:13] <Funktr0n> eeejay, hey!
- # [06:13] <Funktr0n> eeejay: what's GoT?
- # [06:13] <Funktr0n> eeejay: nevermind
- # [06:13] <eeejay> I'll pretend you didn't ask that
- # [06:13] <Funktr0n> LOL
- # [06:13] <Funktr0n> I figured it out like 5 seconds later
- # [06:13] <Funktr0n> thought it was Mozilla related
- # [06:14] <Funktr0n> but then...
- # [06:14] <Funktr0n> ANYWAY
- # [06:14] <Funktr0n> umm, I took at that bug
- # [06:14] <eeejay> yeah?
- # [06:15] <Funktr0n> yeah... so I guess my first questions are: What triggers a "name change" event and what triggers a "value change" event?
- # [06:15] <eeejay> Funktr0n: from the content perspective?
- # [06:15] <Funktr0n> eeejay: Yeah, I guess so
- # [06:15] <eeejay> Funktr0n: anytime the accessibility engine needs to recalculate and change the name, it should get fired
- # [06:16] <Funktr0n> eeejay: but do you specifically mean the "name" attribute or does the "aria-label" attribute qualify here?
- # [06:16] <eeejay> Funktr0n: so if <button id="foo">hello</button>
- # [06:16] <eeejay> $('foo').textContent = 'bye'
- # [06:16] <eeejay> thats a name change
- # [06:16] <eeejay> Funktr0n: anything that would affect the name
- # [06:17] <eeejay> Funktr0n: aria-label included
- # [06:17] <Funktr0n> eeejay: interesting... so "name" is the "spoken name" in this context
- # [06:18] <eeejay> Funktr0n: yeah, one sec
- # [06:19] <Funktr0n> eeejay: and "value" is the same situation? Just what the "spoken value" would be after all things were taken into account?
- # [06:20] <eeejay> Funktr0n: value is simpler. it should just be the value attribute
- # [06:20] <eeejay> Funktr0n: or aria-valuetext
- # [06:20] <eeejay> would take precedent, i guess
- # [06:21] <eeejay> Funktr0n: here is a doc about name change calculation: http://www.w3.org/TR/2011/WD-html-aapi-20110414/#calc
- # [06:21] <Funktr0n> eeejay: okay and that's how it currently works or that's how it's supposed to work?
- # [06:22] <eeejay> Funktr0n: the tl;dr is that the name depends on the node's subtree, title, alt, aria-label, aria-labelledby, <label for=''>.. etc
- # [06:23] <eeejay> Funktr0n: for the sake of the patch you are working in it doesn't matter. You should trust that the a11y engine gives you an appropriate event when the name changes
- # [06:23] <Funktr0n> eeejay: okay yeah, that's really what I was asking
- # [06:24] <Funktr0n> eeejay: I just wasn't sure what exactly those events were tied to, or if additional work needed to be done elsewhere
- # [06:25] <Funktr0n> eeejay: there was a small point of confusion because I noticed that there was an "object attribute changed" event as well
- # [06:26] <Funktr0n> eeejay: and the changes we had discussed listening for were of the "aria-*" attribute type
- # [06:26] <Funktr0n> eeejay: and not necessarily of the explicit "object.name" and/or "object.value" type(s)
- # [06:29] <eeejay> Funktr0n: ah. yeah. it should be pretty straight forward. not an attribute change
- # [06:29] <eeejay> Funktr0n: http://mxr.mozilla.org/mozilla-central/source/accessible/interfaces/nsIAccessibleEvent.idl#70
- # [06:30] <eeejay> Funktr0n: we really need better developer tools so that folks could play around with the a11y api and get a feel for it
- # [06:30] <eeejay> bbiab
- # [06:41] <Funktr0n> eeejay: hmm yeah, I had tried to use the console in WebIDE to make a few of these changes on the fly but was having limited results
- # [06:42] <Funktr0n> eeejay: have you had any success with that? Just by using the console?
- # [06:50] <Funktr0n> eeejay: n/m, got it working. okay sweet, I should be able to get this going. Thanks for the assistance!
- # [07:23] * Quits: kkus (kkus@moz-baj4jj.74.srtnet.com) (Connection closed)
- # [08:13] * Joins: icaaq (icaaq@moz-j8h.uhh.234.94.IP)
- # [08:32] * Tomcat|afk is now known as Tomcat|sheriffduty
- # [08:57] * Quits: icaaq (icaaq@moz-j8h.uhh.234.94.IP) (Ping timeout: 121 seconds)
- # [08:59] * Joins: icaaq (icaaq@moz-j8h.uhh.234.94.IP)
- # [09:00] <@firebot> kechen@mozilla.com requested needinfo from eitan@monotonous.org on bug 1144516.
- # [09:00] <@firebot> https://bugzil.la/1144516 — NEW, kechen@mozilla.com — [ScreenReader] Wrong position of highlight box in content process' iframe member
- # [09:45] * Quits: icaaq (icaaq@moz-j8h.uhh.234.94.IP) (Quit: 10-79 Notify coroner, over and out)
- # [09:49] * Joins: icaaq (icaaq@moz-d2pmnh.cust.telenor.se)
- # [09:54] * Joins: slee (chatzilla@moz-gtmker.range86-190.btcentralplus.com)
- # [10:16] <&MarcoZ> Morning all!
- # [10:17] * Quits: icaaq (icaaq@moz-d2pmnh.cust.telenor.se) (Quit: 10-79 Notify coroner, over and out)
- # [10:32] * Joins: SteveF (chatzilla@moz-80j6qs.cable.virginm.net)
- # [11:12] * Joins: icaaq (icaaq@moz-l1sqt8.creuna.se)
- # [11:18] * Quits: slee (chatzilla@moz-gtmker.range86-190.btcentralplus.com) (Ping timeout: 121 seconds)
- # [11:27] * Joins: Gijs (chatzilla@moz-1evr0l.cable.virginm.net)
- # [11:28] * Quits: SteveF (chatzilla@moz-80j6qs.cable.virginm.net) (Quit: ChatZilla 0.9.91.1 [Firefox 37.0.1/20150402191859])
- # [11:34] * Quits: icaaq (icaaq@moz-l1sqt8.creuna.se) (Quit: 10-79 Notify coroner, over and out)
- # [11:37] * Joins: icaaq (icaaq@moz-l1sqt8.creuna.se)
- # [11:44] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [11:51] * Joins: icaaq_ (icaaq@moz-l1sqt8.creuna.se)
- # [11:51] * Quits: icaaq (icaaq@moz-l1sqt8.creuna.se) (Connection closed)
- # [11:55] * Joins: SteveF (chatzilla@moz-80j6qs.cable.virginm.net)
- # [12:17] * Quits: icaaq_ (icaaq@moz-l1sqt8.creuna.se) (Ping timeout: 121 seconds)
- # [12:22] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Connection closed)
- # [12:52] * Joins: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net)
- # [12:57] * Quits: yliao (yliao@moz-aj9ejj.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [13:03] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [13:07] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [13:17] * Joins: icaaq (icaaq@moz-l1sqt8.creuna.se)
- # [13:19] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [14:27] * Quits: SteveF (chatzilla@moz-80j6qs.cable.virginm.net) (Ping timeout: 121 seconds)
- # [14:27] * Joins: SteveF (chatzilla@moz-80j6qs.cable.virginm.net)
- # [14:43] <@firebot> sledru@mozilla.com requested needinfo from continuation@gmail.com on bug 606080.
- # [14:43] <@firebot> https://bugzil.la/606080 — NEW, nobody@mozilla.org — (64bit) fix unique id casting to NS_PTR_TO_INT32 issue
- # [14:46] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
- # [14:46] * ChanServ sets mode: +o yzen
- # [15:11] * Joins: davidb (davidb@moz-i5m.05u.207.66.IP)
- # [15:11] * ChanServ sets mode: +qo davidb davidb
- # [15:11] <~davidb> heyo
- # [15:12] * Joins: Justin_o (uid14648@moz-pd2b8l.charlton.irccloud.com)
- # [15:12] * Joins: newtron (newtron@moz-6lh.c31.71.199.IP)
- # [15:12] * Joins: anvk (anovak@moz-871.mvk.11.204.IP)
- # [15:14] <&MarcoZ> Heyo davidb!
- # [15:14] <~davidb> hi hi
- # [15:15] <~davidb> MarcoZ, good to chat in about 45 minutes?
- # [15:16] * Quits: SteveF (chatzilla@moz-80j6qs.cable.virginm.net) (Connection closed)
- # [15:17] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
- # [15:17] * ChanServ sets mode: +o surkov
- # [15:19] * yzen is now known as yzen_
- # [15:21] <&MarcoZ> davidb: You bet!
- # [15:21] <~davidb> k
- # [15:23] * Quits: @yzen_ (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # [15:23] <@firebot> mzehe@mozilla.com requested needinfo from dbolter@mozilla.com on bug 1150510.
- # [15:23] <@firebot> https://bugzil.la/1150510 — NEW, nobody@mozilla.org — Crash [@ nsStringBundle::GetStringFromName(char16_t const*, char16_t**) ]
- # [15:32] <@firebot> dbolter@mozilla.com cancelled needinfo?(dbolter@mozilla.com) on bug 1150510.
- # [15:35] <@firebot> mzehe@mozilla.com requested needinfo from dbolter@mozilla.com on bug 1150510.
- # [15:35] <@firebot> https://bugzil.la/1150510 — NEW, nobody@mozilla.org — Crash [@ nsStringBundle::GetStringFromName(char16_t const*, char16_t**) ]
- # [15:36] <&MarcoZ> Did I mention that I hate bugs that don't reproduce for you? ;)
- # [15:38] * Joins: yzen (yzen@moz-i5m.05u.207.66.IP)
- # [15:38] * ChanServ sets mode: +o yzen
- # [15:40] <@firebot> dbolter@mozilla.com cancelled needinfo?(dbolter@mozilla.com) on bug 1150510.
- # [15:41] <~davidb> MarcoZ, do I need to change my locale or something (to recreate the bug)?
- # [15:44] <~davidb> (sorry my attention is split)
- # [15:47] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [15:48] <~davidb> i guess i need to cause that translatestring logic, duh
- # [15:49] <&MarcoZ> davidb: I don't think so. Have you tried issuing a VoiceOver navigation command after you launched it? Like Ctrl+Option+RightArrow or Ctrl+Option+LeftArrow? Maybe it needs that somehow on some systems to trigger the crash.
- # [15:49] <~davidb> no i didn't try that
- # [15:49] <&MarcoZ> davidb: But if that fails, yeah try changing your locale to something French (or another language you might feel somewhat familiar with), and try again.
- # [15:49] <~davidb> surkov, did you try that? ^
- # [15:49] <~davidb> (issuing a VO command)
- # [15:50] <@surkov> I need to rebuild firefox
- # [15:50] <~davidb> heheh
- # [15:50] <~davidb> ok...
- # [15:51] <~davidb> reproduced! (a little more involved...)
- # [15:52] <@firebot> mzehe@mozilla.com requested needinfo from robin@reala.net on bug 1150510.
- # [15:52] <@firebot> https://bugzil.la/1150510 — NEW, nobody@mozilla.org — Crash [@ nsStringBundle::GetStringFromName(char16_t const*, char16_t**) ]
- # [15:52] <@firebot> continuation@gmail.com requested needinfo from dbolter@mozilla.com on bug 606080.
- # [15:52] <@firebot> https://bugzil.la/606080 — NEW, nobody@mozilla.org — (64bit) fix unique id casting to NS_PTR_TO_INT32 issue
- # [15:53] <&MarcoZ> davidb: Yay!
- # [16:00] <&MarcoZ> davidb: Ah, I don'thave profile manager come up first.
- # [16:00] <&MarcoZ> (and I don't have a space bar.)
- # [16:03] <@firebot> dbolter@mozilla.com changed the Assignee on bug 606080 from nobody@mozilla.org to tbsaunde+mozbugs@tbsaunde.org.
- # [16:03] <@firebot> dbolter@mozilla.com cancelled needinfo?(dbolter@mozilla.com) on bug 606080.
- # [16:03] <@firebot> https://bugzil.la/606080 — NEW, tbsaunde+mozbugs@tbsaunde.org — (64bit) fix unique id casting to NS_PTR_TO_INT32 issue
- # [16:03] <~davidb> MarcoZ, i fired up skype :)
- # [16:05] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [16:07] * Joins: scottgonzalez (scott_gonza@moz-5t7jkp.fios.verizon.net)
- # [16:09] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [16:10] * Quits: scott_gonzalez (scott_gonza@moz-5t7jkp.fios.verizon.net) (Ping timeout: 121 seconds)
- # [16:20] <@firebot> robin@reala.net cancelled needinfo?(robin@reala.net) on bug 1150510.
- # [16:20] <@firebot> https://bugzil.la/1150510 — NEW, nobody@mozilla.org — Crash [@ nsStringBundle::GetStringFromName(char16_t const*, char16_t**) ]
- # [16:27] * Quits: icaaq (icaaq@moz-l1sqt8.creuna.se) (Quit: 10-79 Notify coroner, over and out)
- # [16:28] * ~davidb notes his locale is (en-US)
- # [16:36] * Joins: slee (chatzilla@moz-gtmker.range86-190.btcentralplus.com)
- # [16:45] <~davidb> MarcoZ, feel like finding the regression range?
- # [17:03] <&MarcoZ> davidb: I suspect the regression might have something to do with https://bugzilla.mozilla.org/show_bug.cgi?id=1137714
- # [17:03] <@firebot> Bug 1137714 — FIXED, surkov.alexander@gmail.com — Make roleDescription nicer/correct/faster
- # [17:03] <&MarcoZ> This was the first bug that touched this area of code in a long time.
- # [17:28] * Tomcat|sheriffduty is now known as Tomcat|afk
- # [17:31] * davidb is now known as davidb|afk
- # [17:35] * davidb|afk is now known as davidb
- # [17:39] * Joins: icaaq (icaaq@moz-d2pmnh.cust.telenor.se)
- # [17:40] <@firebot> surkov.alexander@gmail.com cancelled needinfo?(surkov.alexander@gmail.com) on bug 1150510.
- # [17:41] <@firebot> https://bugzil.la/1150510 — NEW, nobody@mozilla.org — Crash [@ nsStringBundle::GetStringFromName(char16_t const*, char16_t**) ]
- # [17:45] <@firebot> dbolter@mozilla.com requested needinfo from surkov.alexander@gmail.com on bug 1150510.
- # [18:07] * davidb is now known as davidb|afk
- # [18:27] * davidb|afk is now known as davidb
- # [18:27] * davidb is now known as davidb|afk
- # [18:32] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Quit: ChatZilla 0.9.91.1 [Firefox 40.0a1/20150406030204])
- # [18:34] * Joins: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi)
- # [18:39] * Quits: slee (chatzilla@moz-gtmker.range86-190.btcentralplus.com) (Quit: ChatZilla 0.9.91.1 [Firefox 37.0.1/20150402191859])
- # [18:57] * wlach|afk is now known as wlach
- # [19:09] * Quits: @yzen (yzen@moz-i5m.05u.207.66.IP) (Ping timeout: 121 seconds)
- # [19:14] * Quits: icaaq (icaaq@moz-d2pmnh.cust.telenor.se) (Connection closed)
- # [19:17] * Joins: icaaq (icaaq@moz-d2pmnh.cust.telenor.se)
- # [19:21] * Quits: icaaq (icaaq@moz-d2pmnh.cust.telenor.se) (Ping timeout: 121 seconds)
- # [19:25] * Joins: icaaq (icaaq@moz-man.k9c.137.94.IP)
- # [19:27] <@firebot> bugzilla@imross.com changed the Assignee on bug 1152454 from nobody@mozilla.org to bugzilla@imross.com.
- # [19:27] <@firebot> https://bugzil.la/1152454 — NEW, bugzilla@imross.com — [AccessFu]: announce value and name change events if they happen within an aria-live subtree.
- # [19:31] * Joins: icaaq_ (icaaq@moz-p2d.uhh.234.94.IP)
- # [19:31] * Quits: icaaq (icaaq@moz-man.k9c.137.94.IP) (Ping timeout: 121 seconds)
- # [19:33] * davidb|afk is now known as davidb
- # [19:38] * davidb is now known as davidb|afk
- # [19:39] <Funktr0n> eeejay: So, looks like this bug's working as intended... have a question about generating a PR... Is there a particular repository that I should fork to specifically make changes to Gecko? I'm currently just working inside the Gecko directory of the main B2G repo (git://github.com/mozilla-b2g/B2G.git)
- # [19:39] * davidb|afk is now known as davidb
- # [20:15] * Joins: satdav (uid15780@moz-0t6277.uxbridge.irccloud.com)
- # [20:20] * Joins: yzen (yzen@moz-ql1r6k.cpe.pppoe.ca)
- # [20:20] * ChanServ sets mode: +o yzen
- # [21:03] * Joins: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net)
- # [21:07] * Quits: yliao (yliao@moz-2hf62a.HINET-IP.hinet.net) (Ping timeout: 121 seconds)
- # [21:28] * Quits: icaaq_ (icaaq@moz-p2d.uhh.234.94.IP) (Quit: 10-79 Notify coroner, over and out)
- # [21:30] <Funktr0n> yzen: hey, are you around?
- # [21:30] <@yzen> Funktr0n yeah
- # [21:30] <Funktr0n> yzen cool, sorry we missed each other last seek
- # [21:30] <Funktr0n> *week
- # [21:30] <@yzen> no worries, i was late too :)
- # [21:30] <Funktr0n> did you see the discussion on bug 1135233
- # [21:30] <@firebot> https://bugzil.la/1135233 — NEW, bugzilla@imross.com — [Accessibility] Utility tray statusbar-tray is inaccessible.
- # [21:31] <Funktr0n> yzen: If so, I was just curious if there's anything else I should do there, or if I should just wait for other input
- # [21:33] <@yzen> Funktr0n yeah i was following it, i guess kevin just needs to r+ it if he's fine with xfail fix
- # [21:33] <@yzen> Funktr0n did you want to take on another bug? or you have something lined up already ?
- # [21:34] <Funktr0n> yzen I took Bug 1152454 this morning and I actually have a question about that one too
- # [21:34] <@firebot> https://bugzil.la/1152454 — NEW, bugzilla@imross.com — [AccessFu]: announce value and name change events if they happen within an aria-live subtree.
- # [21:34] <@yzen> Funktr0n ah awesome
- # [21:36] <Funktr0n> yzen I've got a patch ready to go, but I'm unsure how to kick off a PR... I'm currently working within the Gecko folder of the original B2G repo (git://github.com/mozilla-b2g/B2G.git). So do I just Fork that whole B2G repo, make a new branch, and proceed like that or is there a specific and separate Gecko repo that I should work with (like there is for Gaia)?
- # [21:41] <@yzen> Funktr0n yeah so you would have to make an actual patch file for mercurial (hg). You can do it even if you use git, here are steps: https://developer.mozilla.org/en-US/docs/Mercurial_FAQ#I%27m_all_used_to_git.2C_but_how_can_I_provide_Mercurial-ready_patches_.3F
- # [21:41] <@yzen> in your case if your master branch tracks upstream you ll be generating it agains master (the example uses fx-team)
- # [21:43] <Funktr0n> yzen okay, I'll try to get that going. Additionally, are there any tests that should be written for patches in Gecko?
- # [21:43] <@yzen> Funktr0n yes for this one we need, you can see examples in /tests/mochitests/jsat
- # [21:43] * Gijs is now known as Gijs_away
- # [21:43] <@yzen> in the accessible directory
- # [21:44] <@yzen> Funktr0n i think there's a similar test in content_integration_test for a name change (similar to your value change)
- # [21:45] <Funktr0n> yzen okay cool, I'll try to get those up and running also. Thanks!
- # [21:46] <@yzen> Funktr0n thanks!
- # [21:46] <@yzen> ping me if you something's not clear
- # [21:46] <Funktr0n> yzen Oh, real quick: do you know how I'd go about running the tests locally?
- # [21:47] <@yzen> Funktr0n yes so have you built gecko for desktop by any chance ?
- # [21:47] <Funktr0n> yzen no, I've only configured and built for the Flame
- # [21:47] <@yzen> Funktr0n that should be easy
- # [21:48] <@yzen> in your gecko branch you can just run ./mach build and it should do it
- # [21:49] <@yzen> Funktr0n in addition you can create a .mozconfig file in your gecko directory
- # [21:49] <@yzen> and specify some additional options
- # [21:49] <@yzen> here are examples: https://developer.mozilla.org/en-US/docs/Configuring_Build_Options
- # [21:49] <@yzen> Funktr0n but without it (default) should work too
- # [21:49] <@yzen> so once it's built (will take around 10min first time) you can run the tests with the following command:
- # [21:50] <@yzen> ./mach mochitest-a11y accessible/tests/mochitest/jsat/
- # [21:50] <@yzen> Funktr0n ^ will run all jsat (accessfu test) but you can specify the specific file at the end
- # [21:50] <@yzen> Funktr0n generally i make sure at least all jsat tests pass before submitting a patch
- # [21:51] <Funktr0n> yzen okay, that sounds pretty straightforward
- # [21:51] <@yzen> Funktr0n yeah, if something goes wrong let me know
- # [21:51] <Funktr0n> yzen cool, will do!
- # [21:51] <@yzen> Funktr0n thanks for diving into it :)
- # [21:52] <Funktr0n> yzen: np! :)
- # [21:57] * davidb is now known as davidb|afk
- # [22:01] * davidb|afk is now known as davidb
- # [22:29] * Joins: clown (clown@moz-v6m.c3o.211.205.IP)
- # [22:39] * Quits: ~davidb (davidb@moz-i5m.05u.207.66.IP) (Quit: Blah blah blah)
- # [22:41] * Quits: anvk (anovak@moz-871.mvk.11.204.IP) (Quit: Leaving.)
- # [22:41] * Quits: eeejay (eeejay@moz-04n88s.yourbnc.co.uk) (Quit: YourBNC - (https://yourbnc.co.uk))
- # [22:41] <@firebot> lhenry@mozilla.com set status-firefox39 to disabled on bug 1149329.
- # [22:41] <@firebot> https://bugzil.la/1149329 — NEW, nobody@mozilla.org — states/test_link.html and states/test_popup.xul are permafailing on OSX and most Windows versions on
- # [22:42] * Joins: lizzard (ehenry@moz-ruk7u5.ca.comcast.net)
- # [22:51] * Joins: eeejay (eeejay@moz-04n88s.yourbnc.co.uk)
- # [22:56] * Parts: clown (clown@moz-v6m.c3o.211.205.IP)
- # [23:30] * Quits: @surkov (surkov@moz-v8g78c.cpe.teksavvy.com) (Ping timeout: 121 seconds)
- # [23:31] * Joins: surkov (surkov@moz-v8g78c.cpe.teksavvy.com)
- # [23:31] * ChanServ sets mode: +o surkov
- # [23:53] * yzen is now known as yzen_
- # [23:53] * Quits: smaug (chatzilla@moz-7dv8tf.bb.dnainternet.fi) (Ping timeout: 121 seconds)
- # [23:56] * wlach is now known as wlach|biab
- # [23:57] * Quits: @yzen_ (yzen@moz-ql1r6k.cpe.pppoe.ca) (Ping timeout: 121 seconds)
- # Session Close: Tue Apr 14 00:00:00 2015
Previous day, Next day
Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn