Implement [LenientThis] support and enable it in Document.webidl

Closes issue #3760
This commit is contained in:
Mukilan Thiyagarajan 2014-10-25 12:05:36 +05:30
parent 0c12f630e6
commit e023662571
2 changed files with 8 additions and 8 deletions

View file

@ -79,6 +79,6 @@ partial interface Document {
NodeList getElementsByName(DOMString elementName);
// special event handler IDL attributes that only apply to Document objects
/*[LenientThis]*/ attribute EventHandler onreadystatechange;
[LenientThis] attribute EventHandler onreadystatechange;
};
Document implements GlobalEventHandlers;