From 643ca7872b450ea4efacab6188849e5aac2ba161 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Tue, 15 Dec 2009 10:12:09 +0000 Subject: Merge webkit.org at r51976 : Initial merge by git. Change-Id: Ib0e7e2f0fb4bee5a186610272edf3186f0986b43 --- WebCore/dom/Document.idl | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'WebCore/dom/Document.idl') diff --git a/WebCore/dom/Document.idl b/WebCore/dom/Document.idl index ce7010a..e54add0 100644 --- a/WebCore/dom/Document.idl +++ b/WebCore/dom/Document.idl @@ -35,7 +35,7 @@ module core { readonly attribute [V8Custom] DOMImplementation implementation; readonly attribute Element documentElement; - [ReturnsNew] Element createElement(in [ConvertNullToNullString, HintAtomic] DOMString tagName) + [ReturnsNew] Element createElement(in [ConvertNullToNullString] DOMString tagName) raises (DOMException); DocumentFragment createDocumentFragment(); [ReturnsNew] Text createTextNode(in DOMString data); @@ -64,7 +64,7 @@ module core { raises (DOMException); [OldStyleObjC] NodeList getElementsByTagNameNS(in [ConvertNullToNullString] DOMString namespaceURI, in DOMString localName); - Element getElementById(in [HintAtomic] DOMString elementId); + Element getElementById(in DOMString elementId); // DOM Level 3 Core @@ -162,10 +162,9 @@ module core { #endif readonly attribute DOMString URL; - // FIXME: the DOM spec states that this attribute can - // raise an exception on setting. attribute [ConvertNullToNullString] DOMString cookie - /*setter raises (DOMException)*/; + setter raises (DOMException), + getter raises (DOMException); // FIXME: the DOM spec does NOT have this attribute // raising an exception. -- cgit v1.1