RESOLVED FIXED 171715
AX: Media Controls: Missing labels for the Time Labels.
https://bugs.webkit.org/show_bug.cgi?id=171715
Summary AX: Media Controls: Missing labels for the Time Labels.
Aaron Chu
Reported 2017-05-04 23:22:58 PDT
Attachments
Patch (8.27 KB, patch)
2017-05-06 21:31 PDT, Aaron Chu
no flags
Patch (8.27 KB, patch)
2017-05-08 18:00 PDT, Aaron Chu
no flags
Patch (6.67 KB, patch)
2017-06-07 01:14 PDT, Aaron Chu
no flags
Patch (6.61 KB, patch)
2017-06-07 17:41 PDT, Aaron Chu
no flags
Patch (6.40 KB, patch)
2017-06-08 10:42 PDT, Aaron Chu
no flags
Radar WebKit Bug Importer
Comment 1 2017-05-04 23:23:29 PDT
Aaron Chu
Comment 2 2017-05-06 21:31:43 PDT
chris fleizach
Comment 3 2017-05-08 17:07:37 PDT
Comment on attachment 309317 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309317&action=review > Source/WebCore/ChangeLog:9 > + Added descriptive labels to elapsed nad remaining time labels in modern media controls. nad -> and > Source/WebCore/Modules/modern-media-controls/controls/time-label.js:37 > + this.element.setAttribute("aria-roledescription", timerDescription); is role-description appropriate here? I would have thought remaining/elapsed would be more appropriate as the labels
Aaron Chu
Comment 4 2017-05-08 17:30:10 PDT
Comment on attachment 309317 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309317&action=review >> Source/WebCore/Modules/modern-media-controls/controls/time-label.js:37 >> + this.element.setAttribute("aria-roledescription", timerDescription); > > is role-description appropriate here? I would have thought remaining/elapsed would be more appropriate as the labels I think so, because the label would be the time itself, remaining/elapsed serve to describe the timer.
Aaron Chu
Comment 5 2017-05-08 18:00:03 PDT
James Craig
Comment 6 2017-05-09 23:30:31 PDT
James Craig
Comment 7 2017-05-10 00:05:32 PDT
Comment on attachment 309450 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309450&action=review > Source/WebCore/Modules/modern-media-controls/controls/time-label.js:37 > + this.element.setAttribute("aria-roledescription", timerDescription); Let's use aria-label rather than roledescription here. This seems like a solid attempt at reducing verbosity, but I believe it'd have some fallout. In a context where role description was unsupported (maybe Orca/Atk? or iTunes on Windows?), there would no way to distinguish the two timers. > Source/WebCore/Modules/modern-media-controls/controls/time-label.js:65 > + this.element.setAttribute("aria-label", formattedTime); I think this label would duplicate the contents, so you'd hear something like "0:23, 0:23" in some browser+screenreader combinations (timers should speak both their label and value) I believe the previous version used: <span role="timer" aria-label="Remaining">0:23</span> > LayoutTests/media/modern-media-controls/time-control/time-control.html:36 > +shouldBeEqualToString("timeControl.elapsedTimeLabel.element.getAttribute('aria-roledescription')", "Elapsed"); > +shouldBeEqualToString("timeControl.elapsedTimeLabel.element.getAttribute('role')", "timer"); > shouldBe("timeControl.children[1]", "timeControl.scrubber"); > shouldBe("timeControl.children[2]", "timeControl.remainingTimeLabel"); > +shouldBeEqualToString("timeControl.remainingTimeLabel.element.getAttribute('aria-roledescription')", "Remaining"); > +shouldBeEqualToString("timeControl.remainingTimeLabel.element.getAttribute('role')", "timer"); See if you can validate the accessible note properties here rather than the DOM attributes.
Aaron Chu
Comment 8 2017-06-06 17:06:38 PDT
Aaron Chu
Comment 9 2017-06-07 01:14:35 PDT
Antoine Quint
Comment 10 2017-06-07 01:32:20 PDT
Comment on attachment 312166 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=312166&action=review > Source/WebCore/Modules/modern-media-controls/controls/time-label.js:74 > + this.element.setAttribute("aria-label", `${ariaLabel}: ${timeAsString}`); You can use `const` for these two since they don't change. > LayoutTests/media/modern-media-controls/time-label/time-label.html:18 > +timeLabel.element.setAttribute("id", "elasped"); This is fine but you can shorten this to `timeLabel.element.id = "elapsed"`. > LayoutTests/media/modern-media-controls/time-label/time-label.html:27 > +remainingTimeLabel.element.setAttribute("id", "remaining"); Same here about using the "id" property directly. > LayoutTests/media/modern-media-controls/time-label/time-label.html:52 > + finishMediaControlsTest(); Please remove that extra white space.
Aaron Chu
Comment 11 2017-06-07 17:41:33 PDT
Antoine Quint
Comment 12 2017-06-08 06:58:52 PDT
Comment on attachment 312260 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=312260&action=review > LayoutTests/media/modern-media-controls/time-label/time-label.html:51 > + Remove this extra white space when committing.
Aaron Chu
Comment 13 2017-06-08 10:42:46 PDT
WebKit Commit Bot
Comment 14 2017-06-09 01:02:08 PDT
Comment on attachment 312319 [details] Patch Clearing flags on attachment: 312319 Committed r217965: <http://trac.webkit.org/changeset/217965>
WebKit Commit Bot
Comment 15 2017-06-09 01:02:10 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.