New issue
Advanced search Search tips

Issue 807419 link

Starred by 1 user

Issue metadata

Status: Available
Owner: ----
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: Chrome
Pri: 3
Type: Bug
Team-Accessibility



Sign in to add a comment

Elements absolutely positioned in a role=none div shouldn't be 'offscreen'

Project Member Reported by katie@chromium.org, Jan 30 2018

Issue description

This content_browsertest marks the paragraph and inlinetextbox nodes as offscreen, but they shouldn't be:

<!DOCTYPE html>
<!--
@BLINK-ALLOW:offscreen
-->
<html>
  <body>
    <div role="group" style="overflow:hidden">
      <div role="none" style="position:absolute">
        <p>Hello</p>
      </div>
    </div>
  </body>
</html>
 

Comment 1 by katie@chromium.org, Jan 30 2018

Cc: katie@chromium.org
Owner: ----
Here's how that test result should look:

rootWebArea
++group
++++paragraph
++++++staticText name='Hello'
++++++++inlineTextBox name='Hello'

Here's how it looks right now:
rootWebArea
++group
++++paragraph offscreen
++++++staticText offscreen name='Hello'
++++++++inlineTextBox offscreen name='Hello'

Sign in to add a comment