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

content / test / data / accessibility / test-harness / deny-node.html [blame]

<!--
@BLINK-DENY-NODE:internalRole=inlineTextBox
@BLINK-DENY-NODE:internalRole=checkBox
@BLINK-DENY-NODE:internalRole=lineBreak
@WIN-DENY-NODE:role=ROLE_SYSTEM_CHECKBUTTON
@WIN-DENY-NODE:role=ROLE_SYSTEM_WHITESPACE
@MAC-DENY-NODE:AXRole=AXCheckBox
-->
<!DOCTYPE html>
<html>
<body>
  <div>
    This is a very important form full of very important form related things to
    fill in, it is likely the most important form you will see within the next
    100 milliseconds.

    You may think I am just rambling, but this is rambling with a purpose!
    We need enough content in this div to force splitting across multiple
    inlineTextBox-en which we can then ignore using *-DENY-NODE.
  </div>

  <form>
    <p>Please provide your details:</p>
    <label for='quack'>Quack:</label>
    <input id='quack' name='quack' type='text'>

    <br />

    <label>Moo?:</label>
    <input id='mooo' name='moo' type='radio' value="Mooooo!">
    <label for='mooo'>Mooooo!</label>
    <input id='moo' name='moo' type='radio' value="Mooooo?">
    <label for='moo'>Mooooo?</label>

    <br />
    <label for='unimportant'>This isn't a useful checkbox</label>
    <input id='unimportant' name='unimportant' type='checkbox' value="unimportant">

    <br />
    <button type="submit">Submit</button>
  </form>
</body>
</html>