diff options
Diffstat (limited to 'Source/WebCore/dom/MutationRecord.idl')
-rw-r--r-- | Source/WebCore/dom/MutationRecord.idl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/dom/MutationRecord.idl b/Source/WebCore/dom/MutationRecord.idl index 5f25de392..a5e785175 100644 --- a/Source/WebCore/dom/MutationRecord.idl +++ b/Source/WebCore/dom/MutationRecord.idl @@ -39,8 +39,8 @@ readonly attribute Node previousSibling; readonly attribute Node nextSibling; - [TreatReturnedNullStringAs=Null] readonly attribute DOMString attributeName; - [TreatReturnedNullStringAs=Null] readonly attribute DOMString attributeNamespace; + readonly attribute DOMString? attributeName; + readonly attribute DOMString? attributeNamespace; - [TreatReturnedNullStringAs=Null] readonly attribute DOMString oldValue; + readonly attribute DOMString? oldValue; }; |