<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - AX: Media controls accessibility improvement"
   href="https://bugs.webkit.org/show_bug.cgi?id=160223#c17">Comment # 17</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - AX: Media controls accessibility improvement"
   href="https://bugs.webkit.org/show_bug.cgi?id=160223">bug 160223</a>
              from <span class="vcard"><a class="email" href="mailto:cfleizach&#64;apple.com" title="chris fleizach &lt;cfleizach&#64;apple.com&gt;"> <span class="fn">chris fleizach</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=160223#c16">comment #16</a>)
<span class="quote">&gt; Comment on <span class=""><a href="attachment.cgi?id=284671&amp;action=diff" name="attach_284671" title="patch">attachment 284671</a> <a href="attachment.cgi?id=284671&amp;action=edit" title="patch">[details]</a></span>
&gt; patch
&gt; 
&gt; View in context:
&gt; <a href="https://bugs.webkit.org/attachment.cgi?id=284671&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=284671&amp;action=review</a>
&gt; 
&gt; &gt;&gt;&gt; Source/WebCore/Modules/mediacontrols/mediaControlsApple.js:424
&gt; &gt;&gt;&gt; +        timeline.step = 1;
&gt; &gt;&gt; 
&gt; &gt;&gt; While 1 will be a better value than .01 for some movies, it will be much worse for very short files, and it still won't be great for long files. Can you set it to a percentage of the duration in updateDuration instead? You may want to vary the percentage based on duration, e.g. 1% of a 90 second file is almost a second but 1% of a 90 minute is almost a minute, but a I'll bet you can come up with reasonable values with some experimentation.
&gt; &gt; 
&gt; &gt; We have come up with some cases that, let me know your thought:
&gt; &gt; 1. If video is less then 10sec we do 0.5 second step
&gt; &gt; 2. If video is between 10sec to 1min we do 1 second step
&gt; &gt; 3. If video is between 1min to 10min we do 10 second step
&gt; &gt; 4. If video is between 10min to 60min we do 30 second step
&gt; &gt; 5. If video is more than 60min we do 60 second step.
&gt; 
&gt; Now that I have played around with this, I don't think .step is the right
&gt; way to fix this, is it possible to fix this problem with something else?
&gt; While .step makes the slider more usable from the keyboard, it also makes it
&gt; almost unusable as a media timeline slider because it is not possible to
&gt; seek to specific times: e.g. in an hour long video it is only possible to
&gt; seek to every minute. 
&gt; 
&gt; Play around with this fiddle to see what I mean:
&gt; <a href="https://jsfiddle.net/jvL5nnnd">https://jsfiddle.net/jvL5nnnd</a></span >

This was my concern too. Right now we're either making it impossible for KB users to use it or making it useless as a slider

Can we add a keyboard event handler for left/right arrow keys that will adjust the value appropriately while leaving the step as it currently is?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>