Re: UA string: "Touch" or "Tablet" again

2012-11-19 Thread Jonas Sicking
On Tue, Nov 13, 2012 at 8:37 AM, wrote: > On Tuesday, November 13, 2012 2:49:14 AM UTC-8, Jonas Sicking wrote: >> Websites generally send dramatically different content for touch-based >> UIs. Different enough that they'd want to send a different piece of >> main content. > > Just to be clear, th

Re: UA string: "Touch" or "Tablet" again

2012-11-19 Thread Jonas Sicking
On Tue, Nov 13, 2012 at 2:46 PM, Dao wrote: > On 13.11.2012 12:24, jim.math...@gmail.com wrote: >> >> On Tuesday, November 13, 2012 4:49:14 AM UTC-6, Jonas Sicking wrote: >>> >>> Note that putting "touch" in the UA is somewhat different than >>> traditional UA sniffing. It's actually capability te

No DOM Bindings Meeting this Week

2012-11-19 Thread Kyle Huey
Due to the holidays there will be no DOM bindings meeting this week. We will resume next week. - Kyle ___ dev-platform mailing list dev-platform@lists.mozilla.org https://lists.mozilla.org/listinfo/dev-platform

Re: Converting IDOMNode to IDOMHTMLInputElement fails

2012-11-19 Thread immonikolausneuhaus
Additional infos: - Tests on Windows 7 - Firefox 17.0 - do_QueryInterface(elementNode, &error); yields NS_ERROR_NO_INTERFACE (0x80004002). Why didn't I get here the interface since Gecko 17? ___ dev-platform mailing list dev-platform@lists.mozilla.org h

Re: Converting IDOMNode to IDOMHTMLInputElement fails

2012-11-19 Thread Kyle Huey
The IID of nsIDOMHTMLInputElement changed from Gecko 16 to Gecko 17. You are probably compiling against headers for Gecko 16. - Kyle On Nov 19, 2012 7:10 AM, "Pelota" wrote: > I have an IDOMNode > nsCOMPtr_IDOMNode elementNode; > > from which I can get the node name without problems ("INPUT

Converting IDOMNode to IDOMHTMLInputElement fails

2012-11-19 Thread Pelota
I have an IDOMNode nsCOMPtr_IDOMNode elementNode; from which I can get the node name without problems ("INPUT", "FIELDSET", ...) nsString strName; elementNode->GetNodeName(strName); Since Gecko 17 I have the problem, that I cannot get the HTML Input Element Interface for this node: