HTMLElement.idl 3.0 KB

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