Changeset 280708 in webkit
- Timestamp:
- Aug 5, 2021, 5:23:19 PM (5 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/roles-computedRoleString.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r280705 r280708 1 2021-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 1 11 2021-08-05 Andres Gonzalez <andresg_22@apple.com> 2 12 -
trunk/LayoutTests/accessibility/roles-computedRoleString.html
r280649 r280708 314 314 var el, contentAttrRoleString, axElement, computedAriaRole, output, expectedRole, expectation, result, note; 315 315 var currentPlatform = accessibilityController.platformName; 316 let consoleOutput = ""; 316 317 for (var i = 0, c = examples.length; i < c; i++) { 317 318 el = examples[i]; … … 344 345 345 346 if (matchedResults) 346 testPassed(output);347 consoleOutput += "PASS " + output + "\n"; 347 348 else 348 testFailed(output + "Expected: " + expectation);349 consoleOutput += "FAIL " + output + "Expected: " + expectation + "\n"; 349 350 } 351 document.getElementById("console").textContent = consoleOutput; 350 352 351 353 // Once tests are complete, hide all the example markup.
Note:
See TracChangeset
for help on using the changeset viewer.