Changeset 246683 in webkit


Ignore:
Timestamp:
Jun 21, 2019 10:45:01 AM (5 years ago)
Author:
Truitt Savell
Message:

Unreviewed, rolling out r246655.

Introduced a failing test

Reverted changeset:

"Web Inspector: AXI: Audit: image label test is throwing
spurious errors on elements with existing alt attr, but no
value: <img alt>"
https://bugs.webkit.org/show_bug.cgi?id=194754
https://trac.webkit.org/changeset/246655

Location:
trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r246681 r246683  
     12019-06-21  Truitt Savell  <tsavell@apple.com>
     2
     3        Unreviewed, rolling out r246655.
     4
     5        Introduced a failing test
     6
     7        Reverted changeset:
     8
     9        "Web Inspector: AXI: Audit: image label test is throwing
     10        spurious errors on elements with existing alt attr, but no
     11        value: <img alt>"
     12        https://bugs.webkit.org/show_bug.cgi?id=194754
     13        https://trac.webkit.org/changeset/246655
     14
    1152019-06-21  Myles C. Maxfield  <mmaxfield@apple.com>
    216
  • trunk/LayoutTests/inspector/dom/getAccessibilityPropertiesForNode-expected.txt

    r246655 r246683  
    327327    exists: true
    328328    label: x
    329     role: presentation
     329    role: img
    330330    ignored: true
    331331    ignoredByDefault: true
     
    340340    exists: true
    341341    label:
    342     role: presentation
     342    role: img
    343343    ignored: true
    344344
     
    351351    exists: true
    352352    label:
    353     role: presentation
     353    role: img
    354354    ignored: true
    355355
     
    362362    exists: true
    363363    label:
    364     role: presentation
     364    role:
    365365    focused: false
    366366    ignored: true
     
    907907    exists: true
    908908    label:
    909     role: presentation
     909    role:
    910910    ignored: true
    911911    ignoredByDefault: true
     
    916916    exists: true
    917917    label:
    918     role: presentation
     918    role:
    919919    ignored: true
    920920    ignoredByDefault: true
     
    924924    exists: true
    925925    label:
    926     role: presentation
     926    role:
    927927    ignored: true
    928928    ignoredByDefault: true
     
    933933    exists: true
    934934    label:
    935     role: presentation
     935    role:
    936936    ignored: true
    937937    parentNodeId: exists
     
    962962    exists: true
    963963    label:
    964     role: presentation
     964    role:
    965965    ignored: true
    966966    parentNodeId: exists
     
    969969    exists: true
    970970    label:
    971     role: presentation
     971    role:
    972972    ignored: true
    973973    parentNodeId: exists
  • trunk/Source/WebCore/ChangeLog

    r246681 r246683  
     12019-06-21  Truitt Savell  <tsavell@apple.com>
     2
     3        Unreviewed, rolling out r246655.
     4
     5        Introduced a failing test
     6
     7        Reverted changeset:
     8
     9        "Web Inspector: AXI: Audit: image label test is throwing
     10        spurious errors on elements with existing alt attr, but no
     11        value: <img alt>"
     12        https://bugs.webkit.org/show_bug.cgi?id=194754
     13        https://trac.webkit.org/changeset/246655
     14
    1152019-06-21  Myles C. Maxfield  <mmaxfield@apple.com>
    216
  • trunk/Source/WebCore/accessibility/AccessibilityObject.cpp

    r246655 r246683  
    24942494    AccessibilityRole role = roleValue();
    24952495
    2496     if (role == AccessibilityRole::Image && accessibilityIsIgnored())
    2497         return reverseAriaRoleMap().get(static_cast<int>(AccessibilityRole::Presentational));
    2498 
    24992496    // We do not compute a role string for generic block elements with user-agent assigned roles.
    25002497    if (role == AccessibilityRole::Group || role == AccessibilityRole::TextGroup)
Note: See TracChangeset for help on using the changeset viewer.