HTMLOutputElement-htmlfor.txt 461 B

123456789
  1. output.htmlFor is initially empty: true
  2. output.htmlFor always returns the same object: true
  3. output.htmlFor after setting output.htmlFor to "a": a
  4. for attribute value after setting output.htmlFor to "a": a
  5. output.htmlFor after calling output.setAttribute("for", "b"): b
  6. output.htmlFor after setting output.htmlFor to "c d": c d
  7. for attribute value after setting output.htmlFor to "c d": c d
  8. output.htmlFor.contains("c"): true
  9. output.htmlFor.contains("a"): false