Changeset 239613 in webkit


Ignore:
Timestamp:
Jan 4, 2019 9:18:17 AM (5 years ago)
Author:
Chris Fleizach
Message:

AX: String check: "Rule" does not reflect the meaning of the <hr> html tag
https://bugs.webkit.org/show_bug.cgi?id=193041
<rdar://problem/46954090>

Reviewed by Zalan Bujtas.

Source/WebCore:

  • en.lproj/Localizable.strings:
  • platform/cocoa/LocalizedStringsCocoa.mm:

(WebCore::AXHorizontalRuleDescriptionText):

LayoutTests:

  • accessibility/mac/hr-element-expected.txt:
  • platform/mac/accessibility/roles-exposed-expected.txt:
  • platform/mac-wk2/accessibility/roles-exposed-expected.txt:
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r239607 r239613  
     12019-01-04  Chris Fleizach  <cfleizach@apple.com>
     2
     3        AX: String check: "Rule" does not reflect the meaning of the <hr> html tag
     4        https://bugs.webkit.org/show_bug.cgi?id=193041
     5        <rdar://problem/46954090>
     6
     7        Reviewed by Zalan Bujtas.
     8
     9        * accessibility/mac/hr-element-expected.txt:
     10        * platform/mac/accessibility/roles-exposed-expected.txt:
     11        * platform/mac-wk2/accessibility/roles-exposed-expected.txt:
     12
    1132019-01-04  Frederic Wang  <fwang@igalia.com>
    214
  • trunk/LayoutTests/accessibility/mac/hr-element-expected.txt

    r215532 r239613  
    66hr1 role: AXRole: AXSplitter
    77hr1 subrole: AXSubrole: AXContentSeparator
    8 hr1 roleDescription: AXRoleDescription: rule
     8hr1 roleDescription: AXRoleDescription: separator
    99hr1 description: AXDescription:
    1010hr1 is value settable: false
     
    1414hr2 role: AXRole: AXSplitter
    1515hr2 subrole: AXSubrole: AXContentSeparator
    16 hr2 roleDescription: AXRoleDescription: rule
     16hr2 roleDescription: AXRoleDescription: separator
    1717hr2 description: AXDescription:
    1818hr2 is value settable: false
     
    2222hr3 role: AXRole: AXSplitter
    2323hr3 subrole: AXSubrole: AXContentSeparator
    24 hr3 roleDescription: AXRoleDescription: rule
     24hr3 roleDescription: AXRoleDescription: separator
    2525hr3 description: AXDescription: RULER
    2626hr3 is value settable: false
     
    3030hr4 role: AXRole: AXSplitter
    3131hr4 subrole: AXSubrole: AXContentSeparator
    32 hr4 roleDescription: AXRoleDescription: rule
     32hr4 roleDescription: AXRoleDescription: separator
    3333hr4 description: AXDescription:
    3434hr4 is value settable: false
  • trunk/LayoutTests/platform/mac-wk2/accessibility/roles-exposed-expected.txt

    r237245 r239613  
    183183      AXRole: AXSplitter
    184184      AXSubrole: AXContentSeparator
    185       AXRoleDescription: rule
     185      AXRoleDescription: separator
    186186     
    187187i
  • trunk/LayoutTests/platform/mac/accessibility/roles-exposed-expected.txt

    r237245 r239613  
    183183      AXRole: AXSplitter
    184184      AXSubrole: AXContentSeparator
    185       AXRoleDescription: rule
     185      AXRoleDescription: separator
    186186     
    187187i
  • trunk/Source/WebCore/ChangeLog

    r239609 r239613  
     12019-01-04  Chris Fleizach  <cfleizach@apple.com>
     2
     3        AX: String check: "Rule" does not reflect the meaning of the <hr> html tag
     4        https://bugs.webkit.org/show_bug.cgi?id=193041
     5        <rdar://problem/46954090>
     6
     7        Reviewed by Zalan Bujtas.
     8
     9        * en.lproj/Localizable.strings:
     10        * platform/cocoa/LocalizedStringsCocoa.mm:
     11        (WebCore::AXHorizontalRuleDescriptionText):
     12
    1132019-01-04  Zalan Bujtas  <zalan@apple.com>
    214
  • trunk/Source/WebCore/en.lproj/Localizable.strings

    r239397 r239613  
    12511251
    12521252/* accessibility role description for a horizontal rule [<hr>] */
    1253 "rule" = "rule";
     1253"separator" = "separator";
    12541254
    12551255/* An ARIA accessibility group that contains a search feature of a website. */
  • trunk/Source/WebCore/platform/cocoa/LocalizedStringsCocoa.mm

    r237266 r239613  
    231231String AXHorizontalRuleDescriptionText()
    232232{
    233     return WEB_UI_STRING("rule", "accessibility role description for a horizontal rule [<hr>]");
     233    return WEB_UI_STRING("separator", "accessibility role description for a horizontal rule [<hr>]");
    234234}
    235235
Note: See TracChangeset for help on using the changeset viewer.