1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47

content / test / data / accessibility / html / input-text-name-calc.html [blame]

<!--
@BLINK-ALLOW:inputType=*
@UIA-WIN-ALLOW:HelpText*
@UIA-WIN-ALLOW:ClassName*
@WIN-ALLOW:description*
@WIN-ALLOW:explicit-name*
@AURALINUX-ALLOW:description*
@AURALINUX-ALLOW:explicit-name*
@AURALINUX-DENY:selectable-text
-->
<html>
<body>
  <input id="c0" type="text" title="Title0">
  <input id="c1" type="text" title="Title1">
  <input id="c2" type="text" title="Title2" aria-label="AriaLabel2">
  <input id="c3" type="text" title="Title3" aria-label="AriaLabel3"
         aria-labelledby="lb3">

  <input id="c4" type="text" placeholder="Placeholder4">
  <input id="c4a" type="text" aria-placeholder="ARIA Placeholder4a">
  <input id="c4b" type="text" aria-placeholder="ARIA Placeholder4b" placeholder="Placeholder4b">
  <input id="c5" type="text" placeholder="Placeholder5" title="Title5">

  <input id="c6" type="text" title="Title6"
         aria-label="AriaLabel6" aria-labelledby="lb6"
         aria-describedby="db6">

  <input id="c7" type="text" aria-label="AriaLabel7"
         placeholder="Placeholder7" aria-describedby="db7">

  <p class="@NO_DUMP">
    <label for="c1">Label1</label>
    <label for="c2">Label2</label>
    <label for="c3">Label3</label>

    <label for="c6">Label6</label>

    <span id="lb3">LabelledBy3</span>

    <span id="lb6">LabelledBy6</span>

    <span id="db6">DescribedBy6</span>

    <span id="db7">DescribedBy7</span>
  </p>
</body>
</html>