Add figcaption case at 'computeAccessibilityIsIgnored()'

to keep figcation infomation on accessibility tree.

BUG=None

Review URL: https://codereview.chromium.org/553033002

git-svn-id: svn://svn.chromium.org/blink/trunk@181681 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 63897626
......@@ -677,6 +677,9 @@ bool AXRenderObject::computeAccessibilityIsIgnored() const
if (roleValue() == DialogRole)
return false;
if (roleValue() == FigcaptionRole)
return false;
if (roleValue() == FigureRole)
return false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment