chromium/third_party/blink/web_tests/accessibility/calling-accessibility-methods-with-pending-layout-causes-crash.html

<html>
<head>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
</head>
<body>
<a href="#" id="link">
<script>
test((t) => {
    var link = document.getElementById("link");
    link.focus();
    link.style.display = "block";
    accessibilityController.focusedElement.name;
}, "Changing the display of a link from inline to block invalidates layout, but doesn't trigger a layout right away. Ensure that accessing the accessibility object's text before the layout happens doesn't cause a crash.");
</script>
</body>