Skip to content

Commit

Permalink
Add DisplayLocking check to AXLayoutObject::PreviousOnLine
Browse files Browse the repository at this point in the history
Fixed: 1291169
Change-Id: I4ee475994de03a5e65aeb943b2e78147b6ef2aaf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3430499
Reviewed-by: Mason Freed <masonf@chromium.org>
Reviewed-by: Aaron Leventhal <aleventhal@chromium.org>
Commit-Queue: Joey Arhar <jarhar@chromium.org>
Cr-Commit-Position: refs/heads/main@{#966390}
  • Loading branch information
josepharhar authored and DanielRyanSmith committed Feb 28, 2022
1 parent cbf7202 commit f96b476
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions accessibility/crashtests/displaylocked-serialize.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1291169">

<selectmenu></selectmenu>
<div></div>

<script>
(async () => {
const selectmenu = document.querySelector('selectmenu');
await getComputedAccessibleNode(document.querySelector('div'));
selectmenu.style.setProperty('content-visibility', 'hidden');
})();
</script>

0 comments on commit f96b476

Please sign in to comment.