Re: [webkit-dev] [New DOM property] selectionDirection on HTMLInputElement and HTMLTextAreaElement

2011-07-15 Thread Darin Fisher
On Fri, Jul 15, 2011 at 2:08 PM, Ryosuke Niwa  wrote:

> On Fri, Jul 15, 2011 at 2:01 PM, Darin Fisher  wrote:
>
>> I should have also asked:  do you have the support of other browser
>> vendors for this feature?  Or, is it possible that when they set out to
>> solve this problem that they might end up doing it differently?  Are you
>> sure we shouldn't vendor prefix this method if we are going to be the only
>> implementer?
>
>
> I can't think of any other way this property can be implemented. So no, I
> don't think there's a chance for other vendors to implement this API
> differently.  If anything, they may never implement "none" because
> directionless selection is Mac-ism but the spec covers that case as well.
>
> - Ryosuke
>
>

OK... we've been burned in the recent past, so just wanted to make sure.
-Darin
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] [New DOM property] selectionDirection on HTMLInputElement and HTMLTextAreaElement

2011-07-15 Thread Ryosuke Niwa
On Fri, Jul 15, 2011 at 2:01 PM, Darin Fisher  wrote:

> I should have also asked:  do you have the support of other browser vendors
> for this feature?  Or, is it possible that when they set out to solve this
> problem that they might end up doing it differently?  Are you sure we
> shouldn't vendor prefix this method if we are going to be the only
> implementer?


I can't think of any other way this property can be implemented. So no, I
don't think there's a chance for other vendors to implement this API
differently.  If anything, they may never implement "none" because
directionless selection is Mac-ism but the spec covers that case as well.

- Ryosuke
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] [New DOM property] selectionDirection on HTMLInputElement and HTMLTextAreaElement

2011-07-15 Thread Darin Fisher
I should have also asked:  do you have the support of other browser vendors
for this feature?  Or, is it possible that when they set out to solve this
problem that they might end up doing it differently?  Are you sure we
shouldn't vendor prefix this method if we are going to be the only
implementer?

-Darin


On Fri, Jul 15, 2011 at 11:26 AM, Ryosuke Niwa  wrote:

> No, as far as I know.
>
> - Ryosuke
>
> On Fri, Jul 15, 2011 at 11:04 AM, Darin Fisher  wrote:
>
>> Are any other browsers implementing it?
>> On Jul 14, 2011 5:47 PM, "Ryosuke Niwa"  wrote:
>> > Hi all,
>> >
>> > I have a patch to add selectionDirection property on HTMLInputElement
>> and
>> > HTMLTextAreaElement on https://bugs.webkit.org/show_bug.cgi?id=60403.
>> >
>> > The purpose of this property is to let websites control base and extent
>> of
>> > selection. The property has been added to the HTML5 spec section
>> > 4.10.20<
>> http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#textFieldSelection
>> >,
>>
>> > and an extensive discussion about this
>> > feature<
>> http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2011-January/029814.html
>> >
>>
>> > has
>> > been done on whatwg. Given the discussion took place on whatwg and how
>> > simple this API is, I consider it to be a stable API.
>> >
>> > Best,
>> > Ryosuke Niwa
>> > Software Engineer
>> > Google Inc.
>>
>
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] [New DOM property] selectionDirection on HTMLInputElement and HTMLTextAreaElement

2011-07-15 Thread Ryosuke Niwa
No, as far as I know.

- Ryosuke

On Fri, Jul 15, 2011 at 11:04 AM, Darin Fisher  wrote:

> Are any other browsers implementing it?
> On Jul 14, 2011 5:47 PM, "Ryosuke Niwa"  wrote:
> > Hi all,
> >
> > I have a patch to add selectionDirection property on HTMLInputElement and
> > HTMLTextAreaElement on https://bugs.webkit.org/show_bug.cgi?id=60403.
> >
> > The purpose of this property is to let websites control base and extent
> of
> > selection. The property has been added to the HTML5 spec section
> > 4.10.20<
> http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#textFieldSelection
> >,
>
> > and an extensive discussion about this
> > feature<
> http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2011-January/029814.html
> >
>
> > has
> > been done on whatwg. Given the discussion took place on whatwg and how
> > simple this API is, I consider it to be a stable API.
> >
> > Best,
> > Ryosuke Niwa
> > Software Engineer
> > Google Inc.
>
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] [New DOM property] selectionDirection on HTMLInputElement and HTMLTextAreaElement

2011-07-15 Thread Darin Fisher
Are any other browsers implementing it?
On Jul 14, 2011 5:47 PM, "Ryosuke Niwa"  wrote:
> Hi all,
>
> I have a patch to add selectionDirection property on HTMLInputElement and
> HTMLTextAreaElement on https://bugs.webkit.org/show_bug.cgi?id=60403.
>
> The purpose of this property is to let websites control base and extent of
> selection. The property has been added to the HTML5 spec section
> 4.10.20<
http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#textFieldSelection
>,
> and an extensive discussion about this
> feature<
http://lists.whatwg.org/pipermail/whatwg-whatwg.org/2011-January/029814.html
>
> has
> been done on whatwg. Given the discussion took place on whatwg and how
> simple this API is, I consider it to be a stable API.
>
> Best,
> Ryosuke Niwa
> Software Engineer
> Google Inc.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] [New DOM property] selectionDirection on HTMLInputElement and HTMLTextAreaElement

2011-07-14 Thread Ryosuke Niwa
Hi all,

I have a patch to add selectionDirection property on HTMLInputElement and
HTMLTextAreaElement on https://bugs.webkit.org/show_bug.cgi?id=60403.

The purpose of this property is to let websites control base and extent of
selection.  The property has been added to the HTML5 spec section
4.10.20,
and an extensive discussion about this
feature
has
been done on whatwg.  Given the discussion took place on whatwg and how
simple this API is, I consider it to be a stable API.

Best,
Ryosuke Niwa
Software Engineer
Google Inc.
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev