16:00:21 RRSAgent has joined #pointerevents 16:00:21 logging to http://www.w3.org/2013/01/29-pointerevents-irc 16:00:21 +[Microsoft] 16:00:32 RRSAgent, make log public 16:00:44 ScribeNick: ArtB 16:00:48 Scribe: Art 16:00:54 Agenda: http://lists.w3.org/Archives/Public/public-pointer-events/2013JanMar/0043.html 16:00:54 +scott_gonzalez 16:01:01 Date: 29 January 2013 16:01:10 Chair: Art 16:01:18 Meeting: Pointer Events WG Voice Conference 16:01:28 jrossi2 has joined #pointerevents 16:01:40 +Matt_Brubeck 16:01:46 Zakim, I am Matt_Brubeck 16:01:46 ok, mbrubeck, I now associate you with Matt_Brubeck 16:02:01 Zakim, who is here? 16:02:01 On the phone I see Art_Barstow, [Microsoft], scott_gonzalez, Matt_Brubeck 16:02:04 On IRC I see jrossi2, RRSAgent, Zakim, mbrubeck, smaug, AutomatedTester, scott_gonzalez, ArtB, shepazu, dfreedm, trackbot 16:02:09 Present: Art_Barstow, Jacob_Rossi, Scott_Gonzalez, Matt_Brubeck 16:02:59 +[Microsoft.a] 16:03:19 Present+ Asir_Vedamuthu 16:03:28 Regrets: Rick_Byers 16:03:45 Cathy has joined #pointerevents 16:03:55 Present+ Cathy_Chan 16:04:19 Topic: Getting started 16:04:24 AB: I submitted a Draft agenda a few days ago http://lists.w3.org/Archives/Public/public-pointer-events/2013JanMar/0043.html. 16:04:30 AB: one correction: agenda topic #2 is actually a thread started by Jacob (not Rick). 16:04:40 AB: without Rick, perhaps we should drop agenda items #3 since he started that discussion thread. Any objections to that? 16:05:10 JR: that's fair 16:05:16 AB: any other change requests? 16:05:29 +??P38 16:05:42 AV: during AoB, I'd like to talk about going to LC 16:05:49 zakim, ??P38 is me 16:05:49 +Cathy; got it 16:05:55 asir has joined #pointerevents 16:06:00 AB: so, we'll drop item #3 16:06:23 ScribeNick: mbrubeck 16:06:28 Scribe: Matt 16:06:48 Topic: Making click/contextmenu use Pointer Event interface 16:06:59 AB: Jacob started this thread at http://lists.w3.org/Archives/Public/public-pointer-events/2013JanMar/0024.html and Rick responded. 16:07:38 JR: The basic idea is, like we talked about with compatibility mouse events, is that the click event is being carried forward into the pointer event world. 16:07:50 ... Even if a browser did not implement mouse events, it would still want to implement "click." 16:08:04 ... It's not specific to mouse events; it's a non-hardware-specific "activation event." 16:08:26 ... We don't want to try to replace it; not enough traction for past efforts like the DOM Activated event 16:08:39 zakim, drop me 16:08:39 Cathy is being disconnected 16:08:41 -Cathy 16:08:45 ... Our implementation will even fire click events for non-primary pointers in multi-touch scenarios. 16:08:48 +Cathy 16:09:07 ... Based on that implementation, a primary piece of feedback is that developers want to know whether a click came from mouse, pen, touch. 16:09:19 ... and we got some similar feedback about the contextmenu event. 16:09:21 (uh, skype is updating itself) 16:09:33 ... The right way to fix that is to make these events send PointerEvent objects instead of MouseEvent objects. 16:09:46 ... Rick responded and called out one expected catch. 16:09:51 … http://lists.w3.org/Archives/Public/public-pointer-events/2013JanMar/0040.html 16:09:57 ... There's a small (negligible?) compatibility impact from this change. 16:10:19 ... If someone specifically type-checks the object (e.g. using .constructor) then that could fail. 16:10:22 +[IPcaller] 16:10:23 +Doug_Schepers 16:10:32 Zakim, [IPcaller] is Olli_Pettay 16:10:32 +Olli_Pettay; got it 16:10:38 ... I analyzed some compatibility data we have and found a very low rate of things that look like they examine MouseEvent types. 16:10:41 Zakim, nick smaug is Olli_Pettay 16:10:41 ok, smaug, I now associate you with Olli_Pettay 16:10:42 Present+ Doug_Schepers, Olli_Pettay 16:10:56 ... So I can say with *reasonable* confidence that this change would not have tremendous fallout, and I think it would be a big win for developers. 16:11:26 ... I want feedback from this WG, but I don't think the PE spec is the right place to make this change. We'd want it in DOM Events and/or HTML, where the "click" event is defined. 16:12:18 ... Any feedback here? 16:13:12 DS: I think the reason DOMActivate failed. One is that the name is unwieldy. It's a terrible name. :) 16:13:31 ... And at the time it was specified, we didn't have implementers. Nobody had committed to implement it. 16:13:56 ... The third reason is that its relationship with "click" was too complicated and not well-specified. 16:14:16 … e.g. no fallback defined 16:14:24 ... The whole series of tactical errors around that led to it not being adopted. 16:14:37 Zakim, who is making noise? 16:14:47 mbrubeck, listening for 10 seconds I heard sound from the following: asir (17%), [Microsoft.a] (38%), Doug_Schepers (44%) 16:14:51 sstewart6 has joined #pointerevents 16:15:02 JR: Certainly it's possible to create a new event. 16:15:19 ... but "click" has so much mind-share, and we're not offering new use cases for it. 16:15:37 ... Really developers just want a little added information on top of the event we are already using. 16:15:45 ... So the model ends up being better if we can keep the same event. 16:16:32 ... If we were going to fire it in different scenarios that would be one thing, but we are just adding new properties and firing it at the same time. 16:16:38 DS: What specific information are we adding? 16:16:58 JR: The main thing developers want is the pointerType field. Some of the other PointerEvent fields could be useful too. 16:19:19 MB: An alternate solution, not as clean but avoiding the compatibility risk, is to move some fields like pointerType from PointerEvent up to MouseEvent. 16:19:36 ... We basically have this in Gecko except the field is called mozInputSource. 16:19:52 JR: Yes, that's a valid alternative. This really depends on how big the compatibility risk. 16:20:21 ... Based on my data, I really found very few things that would be broken by this. Most of the ones flagged in my analysis turned out to be false positives on closer look. 16:20:49 MB: And just to clarify the compatibility issue... .prototype and .constructor and "typeof" would be broken, while "instanceof" would not, right? 16:20:51 JR: Right. 16:21:04 JR: Any other comments, or should we wait for Rick to have a chance to respond? 16:21:40 mbrubeck: "we need to have click working everywhere" 16:22:19 AB: So, I think we want to queue this up for next week. Everyone please follow the thread. 16:22:53 SG: I just want to say I agree we should be using a click event here. 16:23:22 JR: Scott, I didn't see anything specific in jQuery that's affected here, but I'm just curious if you have any gut feeling about changing an object type like this. 16:24:10 SG: It won't break jQuery because we look at the name (event.type), not the object's constructor. We once used typeof or instanceof checks; I should try to find why we stopped doing that. 16:24:37 JR: That would be very good data to have. We have gotten burned before by older versions of jQuery still in the wild. If those exist but aren't showing up in my data it would be good to know. 16:24:55 AB: If possible, can you get that information onto the mailing list? 16:25:40 Topic: Pointer Events Bugs ; Jacob to lead discussion; 16:26:16 AB: We have two bugs, 20217 and 20222. 16:26:18 https://www.w3.org/Bugs/Public/show_bug.cgi?id=20217 16:26:38 JR: I'll start with 20217: Expand touch-action property to include more of the values implemented by IE 16:26:47 ... We had a resolution last week to add pan-x and pan-y. 16:27:25 ... I haven't added this to the spec yet; I realized I had to tweak our spec a bit to handle the case where you have e.g. pan-x on a child and pan-y on its parent. 16:27:50 ... We also discussed "zoom" last week. To recap: IE10 has some gesture-specific zoom properties that are out-of-scope for this WG. 16:28:10 ... The question was, should we create a gesture-agnostic "zoom" value. I took a look at use cases for our current zoom values. 16:28:25 ... The use cases I found were really about enabling specific gestures for use by content, not about disabling zoom. 16:28:46 ... Generally speaking, when you disable panning, you also want to disable zoom (because zooming in is not useful if you can't pan around). 16:29:06 ... So that's the one use case I found where you just want to disable zoom. 16:29:17 ... In summary, I'm not sure "zoom" adds enough benefit to be worth adding to the spec. 16:30:16 MB: Since CSS Device Adaptation (the @viewport / rule already gives a way to disable zoom at the document level, I agree we don't have a strong need to tackle it here. 16:30:26 AB: Should we wait for feedback from Rick? 16:30:34 JR: Since this bug was filed by his team, I think we should. 16:31:27 JR: One approach to consider is documenting what we've said here as a resolution pending follow-up from Rick. 16:31:33 AB: That would be fine by me. 16:31:39 ... Any objections? 16:32:38 RESOLUTION: Pending feedback from Rick Byers, the group tentatively concludes that there is not a sufficient use case for adding a "zoom" value for the touch-action property. 16:33:11 AB: The other bug is https://www.w3.org/Bugs/Public/show_bug.cgi?id=20222 - Pointer events explicitly disallow compatbility with hover menus used by many web sites 16:33:17 JR: There's been some discussion on the list about this. 16:33:35 ... Since we don't have great consensus on how to solve the "hover menu" problem interoperably, 16:33:58 ... for this version of the spec it might just be appropriate for us to put some leeway into the compatibility mouse events section regarding mouseover/mouseout events. 16:34:23 ... like, "Implementations MAY do something different in specific cases like :hover menus" 16:34:39 ... and just make sure the spec is forward-compatible with changes we might make to address this in a future version. 16:34:50 AB: Any feedback on this proposal? 16:35:09 SG: I'm not aware of any issues with that. 16:36:12 MB: In Touch Events when we tried to leave things implementation-defined for compatibility with future changes, we ended up locked into specific behavior by content that targeted existing user agents. 16:37:18 JR: Does Touch Events address the hover menu case? 16:37:31 MB: No, but we had similar decisions in analagous cases. 16:38:01 AB: Rick had another thread he started this week about mapping hover for devices that don't support it. 16:38:42 ... any other ideas on how to proceed? 16:39:04 ... or other comments on 20222 for today? If not, we'll hope Rick is here to provide feedback next week. 16:39:09 Topic: Any other business? 16:39:30 AB: Any news about implementation status? 16:40:16 q+ 16:40:28 MB: Things are still quiet on the Gecko front; we want to move forward but we just don't have any resources assigned yet. 16:40:35 q+ 16:41:47 Topic: Last Call 16:42:15 AV: We discussed going to LC before but wanted to wait on bug 20217. 16:42:27 ... Now that issue is nearing resolution, and so is our other remaining bug 20222. 16:42:39 ... We also talked about trying to reach Last Call in time for W3Conf 16:42:55 ... So I want to start a conversation about when is the right time, and what preparation we need. 16:43:44 q- asir 16:43:47 q- shepazu 16:44:10 DS: I think if we're going to talk about Pointer Events as Last Call (which I'm in favor of) 16:44:21 ... it might be efficient to also consider what version 2 is going to look like 16:44:40 ... so we can have a concrete plan to move forward immediately with a version 2, and we can figure out which issues we can put off for v2. 16:45:03 ... For example, some of the issues Rick and I have brought up might be fine to address in a v2, if we start work on v2 immediately. 16:45:29 ... I'd be willing to put off the transform calculation issue I brought up last week until v2 if people thought it was appropriate. 16:45:42 ... Does this make sense? 16:46:37 v2 UCs and Reqs: http://www.w3.org/wiki/PointerEvents/UseCasesAndRequirements#Requirements:_Pointer_Events_v.Next_Specification 16:46:49 JR: Yes, I think this is a pretty standard step; there's always something more you want for the future. 16:46:59 MB: I think this strategy served us well in Touch Events. 16:47:20 DS: I think a key part of the Touch Events v2 strategy is that we were talking about additive features for v2, but not fundamental changes. 16:47:50 ... We've been working on this spec for just four months. It would be impressive and a good signal to go to Last Call now. 16:48:35 SG: I think it's fine to go ahead... ideally I'd like consensus on the three items still under discussion (hover, touch-action, and click/contextmenu). 16:48:43 ... but it sounds like that may happen within the next week or two. 16:49:38 Zakim, who is talking? 16:49:48 mbrubeck, listening for 10 seconds I heard sound from the following: [Microsoft.a] (70%), Doug_Schepers (69%) 16:49:57 s/SG: I think it's fine/AB: I think it's fine/ 16:50:07 DS: This is just a "first Last Call" 16:50:22 ... It will get attention from a lot of groups and probably generate a lot of feedback. 16:50:39 ... It would be good if we could start documenting our intentions for v2 to head off any feedback that's already known. 16:50:42 Good idea to maintain a V2 list 16:50:54 ... or even start the v2 branch, so we can also get people looking at the next version early. 16:51:35 JR: I'm not crazy about having two concurrent specs at once, but I like how I've seen it done in the past with a list of ideas on a wiki. 16:51:48 ... then we can focus editorial effort on the first spec and getting it to completion. 16:52:26 DS: In any case, until we have actual text we want to put into v2, it's a moot point. 16:52:48 ... If spec text does emerge that would resolve some issues that are out of scope for v1, then we can revisit the proposal. 16:54:20 Having any kind of data early in the process is always helpful 16:56:33 AB: I think we need to get closure on the three open items mentioned earlier; I can see us being there in the next two weeks. 16:57:00 DS: Do we have all those issues documented? 16:57:13 AB: We have two in Bugzilla, and the third came up in a mailing list thread. 16:57:25 JR: Those are the only issues I'm tracking now, and I expect to wrap them up shortly. 16:58:00 DS: Do we have a document in the wiki for known issues in v1 that are possibly in scope for v2? 16:58:36 AB: We do have some relevant stuff in the wiki on the Use Cases and Requirements page, and in Bugzilla we can mark bugs for v.next. 16:58:45 ... We can move the wiki stuff to a more specific "v2 features" list. 16:59:50 AB: I'll let Rick know we are waiting on his feedback on these issues. See you all next week! 16:59:53 -Olli_Pettay 16:59:54 -[Microsoft.a] 16:59:54 -asir 16:59:55 -Doug_Schepers 16:59:56 -Cathy 17:00:00 -Art_Barstow 17:00:00 -scott_gonzalez 17:00:12 -Matt_Brubeck 17:00:14 RWC_PEWG()11:00AM has ended 17:00:14 Attendees were Art_Barstow, scott_gonzalez, Matt_Brubeck, Cathy, Doug_Schepers, Olli_Pettay, asir 17:00:20 jrossi2 has left #pointerevents 17:50:27 I followed up on the ML with notes about what jQuery currently does and what we'd like to do. 17:50:46 The check we want to use is instanceof, so the change from MouseEvent to PointerEvent would be safe for us. 17:50:55 Though we're not currently using that check, and we haven't in the past. 17:51:21 RRSAgent, make minutes 17:51:21 I have made the request to generate http://www.w3.org/2013/01/29-pointerevents-minutes.html ArtB 17:51:26 zakim, bye 17:51:26 Zakim has left #pointerevents 17:58:16 thanks scott_gonzalez! 17:58:19 rrsagent, bye 17:58:19 I see no action items