New issue
Advanced search Search tips

Issue 707971 link

Starred by 1 user

Issue metadata

Status: Assigned
Owner:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Bug
Team-Accessibility



Sign in to add a comment

Blink should not recreate accessibility objects for CSS position changes

Project Member Reported by dtseng@chromium.org, Apr 3 2017

Issue description

<p>start</p>
<a href=#contents" id="disappearingObject" style="position: static">
  hello world
  </a>
<script>
  var toggle = false;
  setInterval(function() {
    document.getElementById('disappearingObject').style.position = toggle ? 'static' : 'absolute';
    toggle = !toggle;
  }, 1000);
  </script>

expected:
disappearingObject should retain its accessibility id

result:
disappearingObject keeps on receiving a new accessibility id
 

Sign in to add a comment