chromium/content/test/data/accessibility/accname/desc-from-content-of-describedby-element-recursive.html

<!doctype html>
<html>
<body>
<label for="test">Label text</label>
<input id="test" type="text" aria-describedby="desc2">
<div id="desc2">
  <!-- role=status normally doesn't support name-from-contents, but when
       performing name-from-contents on behalf of aria-describedby, it should
       contribute its text. -->
  <div role="status">
  Description text
  </div>
</div>