Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(710)

Side by Side Diff: Source/core/dom/DOMImplementation.idl

Issue 960533003: Sync the DOMImplementation interface with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/DOMImplementation.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 // https://dom.spec.whatwg.org/#interface-domimplementation
22
21 [ 23 [
22 SetWrapperReferenceFrom=document, 24 SetWrapperReferenceFrom=document,
23 TypeChecking=Interface, 25 TypeChecking=Interface,
24 WillBeGarbageCollected, 26 WillBeGarbageCollected,
25 ] interface DOMImplementation { 27 ] interface DOMImplementation {
28 [RaisesException] DocumentType createDocumentType(DOMString qualifiedName, D OMString publicId, DOMString systemId);
29 [RaisesException] XMLDocument createDocument(DOMString? namespaceURI, [Treat NullAs=EmptyString] DOMString qualifiedName, optional DocumentType? doctype = nu ll);
haraken 2015/02/25 17:25:41 I'm wondering if we need '= null'. I guess it's ju
Jens Widell 2015/02/25 17:32:56 "= null" says "treat missing the same as if null w
30 // FIXME: createHTMLDocument should return a Document. crbug.com/238368
31 HTMLDocument createHTMLDocument(optional DOMString title);
26 32
27 // DOM Level 1 33 // FIXME: hasFeature should take no arguments and always return true. crbug. com/429536
28
29 [ImplementedAs=hasFeatureForBindings, MeasureAs=DOMImplementationHasFeature] 34 [ImplementedAs=hasFeatureForBindings, MeasureAs=DOMImplementationHasFeature]
30 boolean hasFeature(DOMString feature, DOMString? version); 35 boolean hasFeature(DOMString feature, DOMString? version);
31
32 // DOM Level 2
33
34 [RaisesException] DocumentType createDocumentType(DOMString qualifiedName,
35 DOMString publicId,
36 DOMString systemId);
37 [RaisesException] XMLDocument createDocument(DOMString? namespaceURI,
38 [TreatNullAs=EmptyString] DOMSt ring qualifiedName,
39 optional DocumentType? doctype = null);
40
41 // HTMLDOMImplementation interface from DOM Level 2 HTML
42
43 HTMLDocument createHTMLDocument(optional DOMString title = null);
44 }; 36 };
OLDNEW
« no previous file with comments | « Source/core/dom/DOMImplementation.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698