Remove bogus FIXME from Document.idl https://bugs.webkit.org/show_bug.cgi?id=98302 Reviewed by Adam Barth. The FIXME claimed that document.body throwing an exception was not specced, but in fact it is: http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-document-body * dom/Document.idl: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@130336 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 1141f77..1a5ea01 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,16 @@ +2012-10-03 Adam Klein <adamk@chromium.org> + + Remove bogus FIXME from Document.idl + https://bugs.webkit.org/show_bug.cgi?id=98302 + + Reviewed by Adam Barth. + + The FIXME claimed that document.body throwing an exception was not + specced, but in fact it is: + http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-document-body + + * dom/Document.idl: + 2012-10-03 Joshua Bell <jsbell@chromium.org> IndexedDB: Memory leak when deleting object stores with indexes
diff --git a/Source/WebCore/dom/Document.idl b/Source/WebCore/dom/Document.idl index dc1ca71..2e39765 100644 --- a/Source/WebCore/dom/Document.idl +++ b/Source/WebCore/dom/Document.idl
@@ -167,8 +167,6 @@ setter raises (DOMException), getter raises (DOMException); - // FIXME: the DOM spec does NOT have this attribute - // raising an exception. attribute HTMLElement body setter raises (DOMException);