1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

content / test / data / accessibility / accname / name-text-labelledby-with-generated-content.html [blame]

<!--
@BLINK-DENY:description
-->
<!doctype html>
<html>
<body>
<style type="text/css">
  p::before { content: "one"; }
  p::after { content: "three"; }
</style>
<input id="test" type="text" aria-labelledby="ID1 ID2">
<p id="ID1">two</p>
<p id="ID2" hidden>four</p>
</body>
</html>