HTMLElement.idl 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. interface HTMLElement : Element {
  2. [Reflect] attribute DOMString title;
  3. [Reflect] attribute DOMString lang;
  4. [Reflect] attribute boolean hidden;
  5. attribute DOMString contentEditable;
  6. [LegacyNullToEmptyString] attribute DOMString innerText;
  7. // FIXME: These should all come from a GlobalEventHandlers mixin
  8. attribute EventHandler onabort;
  9. attribute EventHandler onauxclick;
  10. attribute EventHandler onblur;
  11. attribute EventHandler oncancel;
  12. attribute EventHandler oncanplay;
  13. attribute EventHandler oncanplaythrough;
  14. attribute EventHandler onchange;
  15. attribute EventHandler onclick;
  16. attribute EventHandler onclose;
  17. attribute EventHandler oncontextmenu;
  18. attribute EventHandler oncuechange;
  19. attribute EventHandler ondblclick;
  20. attribute EventHandler ondrag;
  21. attribute EventHandler ondragend;
  22. attribute EventHandler ondragenter;
  23. attribute EventHandler ondragleave;
  24. attribute EventHandler ondragover;
  25. attribute EventHandler ondragstart;
  26. attribute EventHandler ondrop;
  27. attribute EventHandler ondurationchange;
  28. attribute EventHandler onemptied;
  29. attribute EventHandler onended;
  30. // FIXME: Should be an OnErrorEventHandler
  31. attribute EventHandler onerror;
  32. attribute EventHandler onfocus;
  33. attribute EventHandler onformdata;
  34. attribute EventHandler oninput;
  35. attribute EventHandler oninvalid;
  36. attribute EventHandler onkeydown;
  37. attribute EventHandler onkeypress;
  38. attribute EventHandler onkeyup;
  39. attribute EventHandler onload;
  40. attribute EventHandler onloadeddata;
  41. attribute EventHandler onloadedmetadata;
  42. attribute EventHandler onloadstart;
  43. attribute EventHandler onmousedown;
  44. [LegacyLenientThis] attribute EventHandler onmouseenter;
  45. [LegacyLenientThis] attribute EventHandler onmouseleave;
  46. attribute EventHandler onmousemove;
  47. attribute EventHandler onmouseout;
  48. attribute EventHandler onmouseover;
  49. attribute EventHandler onmouseup;
  50. attribute EventHandler onpause;
  51. attribute EventHandler onplay;
  52. attribute EventHandler onplaying;
  53. attribute EventHandler onprogress;
  54. attribute EventHandler onratechange;
  55. attribute EventHandler onreset;
  56. attribute EventHandler onresize;
  57. attribute EventHandler onscroll;
  58. attribute EventHandler onsecuritypolicyviolation;
  59. attribute EventHandler onseeked;
  60. attribute EventHandler onseeking;
  61. attribute EventHandler onselect;
  62. attribute EventHandler onslotchange;
  63. attribute EventHandler onstalled;
  64. attribute EventHandler onsubmit;
  65. attribute EventHandler onsuspend;
  66. attribute EventHandler ontimeupdate;
  67. attribute EventHandler ontoggle;
  68. attribute EventHandler onvolumechange;
  69. attribute EventHandler onwaiting;
  70. attribute EventHandler onwebkitanimationend;
  71. attribute EventHandler onwebkitanimationiteration;
  72. attribute EventHandler onwebkitanimationstart;
  73. attribute EventHandler onwebkittransitionend;
  74. attribute EventHandler onwheel;
  75. };