⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280708 in webkit


Ignore:
Timestamp:
Aug 5, 2021, 5:23:19 PM (5 years ago)
Author:
Chris Dumez
Message:

REGRESSION (r280541): [ BigSur Debug ] accessibility/roles-computedRoleString.html is timing out
https://bugs.webkit.org/show_bug.cgi?id=228744
<rdar://problem/81472432>

Unreviewed, speed up test a bit as it is timing out flakily in Debug.

  • accessibility/roles-computedRoleString.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r280705 r280708  
     12021-08-05  Chris Dumez  <cdumez@apple.com>
     2
     3        REGRESSION (r280541): [ BigSur Debug ] accessibility/roles-computedRoleString.html is timing out
     4        https://bugs.webkit.org/show_bug.cgi?id=228744
     5        <rdar://problem/81472432>
     6
     7        Unreviewed, speed up test a bit as it is timing out flakily in Debug.
     8
     9        * accessibility/roles-computedRoleString.html:
     10
    1112021-08-05  Andres Gonzalez  <andresg_22@apple.com>
    212
  • trunk/LayoutTests/accessibility/roles-computedRoleString.html

    r280649 r280708  
    314314    var el, contentAttrRoleString, axElement, computedAriaRole, output, expectedRole, expectation, result, note;
    315315    var currentPlatform = accessibilityController.platformName;
     316    let consoleOutput = "";
    316317    for (var i = 0, c = examples.length; i < c; i++) {
    317318        el = examples[i];
     
    344345
    345346        if (matchedResults)
    346             testPassed(output);
     347            consoleOutput += "PASS " + output + "\n";
    347348        else
    348             testFailed(output + "Expected: " + expectation);
     349            consoleOutput += "FAIL " + output + "Expected: " + expectation + "\n";
    349350    }
     351    document.getElementById("console").textContent = consoleOutput;
    350352
    351353    // Once tests are complete, hide all the example markup.
Note: See TracChangeset for help on using the changeset viewer.