xhtml-events.rnc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Events Module
  2. a.attlist &=
  3. attribute onblur { Script.datatype }?,
  4. attribute onfocus { Script.datatype }?
  5. area.attlist &=
  6. attribute onblur { Script.datatype }?,
  7. attribute onfocus { Script.datatype }?
  8. form.attlist &=
  9. attribute onreset { Script.datatype }?,
  10. attribute onsubmit { Script.datatype }?
  11. body.attlist &=
  12. attribute onload { Script.datatype }?,
  13. attribute onunload { Script.datatype }?
  14. label.attlist &=
  15. attribute onblur { Script.datatype }?,
  16. attribute onfocus { Script.datatype }?
  17. input.attlist &=
  18. attribute onblur { Script.datatype }?,
  19. attribute onchange { Script.datatype }?,
  20. attribute onfocus { Script.datatype }?,
  21. attribute onselect { Script.datatype }?
  22. select.attlist &=
  23. attribute onblur { Script.datatype }?,
  24. attribute onchange { Script.datatype }?,
  25. attribute onfocus { Script.datatype }?
  26. textarea.attlist &=
  27. attribute onblur { Script.datatype }?,
  28. attribute onchange { Script.datatype }?,
  29. attribute onfocus { Script.datatype }?,
  30. attribute onselect { Script.datatype }?
  31. button.attlist &=
  32. attribute onblur { Script.datatype }?,
  33. attribute onfocus { Script.datatype }?
  34. Events.attrib =
  35. attribute onclick { Script.datatype }?,
  36. attribute ondblclick { Script.datatype }?,
  37. attribute onmousedown { Script.datatype }?,
  38. attribute onmouseup { Script.datatype }?,
  39. attribute onmouseover { Script.datatype }?,
  40. attribute onmousemove { Script.datatype }?,
  41. attribute onmouseout { Script.datatype }?,
  42. attribute onkeypress { Script.datatype }?,
  43. attribute onkeydown { Script.datatype }?,
  44. attribute onkeyup { Script.datatype }?
  45. Common.attrib &= Events.attrib
  46. CommonIdRequired.attrib &= Events.attrib