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

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

Issue 371693002: Set default deep value false in Document.importNode (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Take review comment into consideration Created 6 years, 5 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
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/UseCounter.h » ('j') | 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, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
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,
(...skipping 24 matching lines...) Expand all
35 DocumentFragment createDocumentFragment(); 35 DocumentFragment createDocumentFragment();
36 Text createTextNode(DOMString data); 36 Text createTextNode(DOMString data);
37 Comment createComment(DOMString data); 37 Comment createComment(DOMString data);
38 [RaisesException, MeasureAs=DocumentCreateCDATASection] CDATASection createC DATASection([Default=Undefined] optional DOMString data); // Removed from DOM4. 38 [RaisesException, MeasureAs=DocumentCreateCDATASection] CDATASection createC DATASection([Default=Undefined] optional DOMString data); // Removed from DOM4.
39 [RaisesException] ProcessingInstruction createProcessingInstruction(DOMStrin g target, DOMString data); 39 [RaisesException] ProcessingInstruction createProcessingInstruction(DOMStrin g target, DOMString data);
40 [RaisesException, MeasureAs=DocumentCreateAttribute] Attr createAttribute([D efault=Undefined] optional DOMString name); // Removed from DOM4. 40 [RaisesException, MeasureAs=DocumentCreateAttribute] Attr createAttribute([D efault=Undefined] optional DOMString name); // Removed from DOM4.
41 HTMLCollection getElementsByTagName(DOMString localName); 41 HTMLCollection getElementsByTagName(DOMString localName);
42 42
43 // Introduced in DOM Level 2: 43 // Introduced in DOM Level 2:
44 44
45 [CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node impor tNode(Node node, optional boolean deep); 45 [CustomElementCallbacks, RaisesException, TypeChecking=Interface] Node impor tNode(Node node, optional boolean deep = false);
46 [CustomElementCallbacks, RaisesException] Element createElementNS(DOMString? namespaceURI, DOMString qualifiedName); 46 [CustomElementCallbacks, RaisesException] Element createElementNS(DOMString? namespaceURI, DOMString qualifiedName);
47 [RaisesException, DeprecateAs=DocumentCreateAttributeNS] Attr createAttribut eNS([Default=Undefined] optional DOMString? namespaceURI, 47 [RaisesException, DeprecateAs=DocumentCreateAttributeNS] Attr createAttribut eNS([Default=Undefined] optional DOMString? namespaceURI,
48 [Default=Undefined] optional DOMString? qualifiedName); // Removed from DOM4 . 48 [Default=Undefined] optional DOMString? qualifiedName); // Removed from DOM4 .
49 HTMLCollection getElementsByTagNameNS(DOMString? namespaceURI, DOMString loc alName); 49 HTMLCollection getElementsByTagNameNS(DOMString? namespaceURI, DOMString loc alName);
50 [PerWorldBindings] Element getElementById(DOMString elementId); 50 [PerWorldBindings] Element getElementById(DOMString elementId);
51 51
52 // DOM Level 3 Core 52 // DOM Level 3 Core
53 53
54 [MeasureAs=DocumentInputEncoding] readonly attribute DOMString? inputEncodin g; // Removed from DOM4. 54 [MeasureAs=DocumentInputEncoding] readonly attribute DOMString? inputEncodin g; // Removed from DOM4.
55 55
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 // TODO(davidben): This is a property so attaching a deprecation warning res ults in false positives when outputting 216 // TODO(davidben): This is a property so attaching a deprecation warning res ults in false positives when outputting
217 // document in the console. It's possible http://crbug.com/43394 will resolv e this. 217 // document in the console. It's possible http://crbug.com/43394 will resolv e this.
218 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a ttribute DOMString webkitVisibilityState; 218 [MeasureAs=PrefixedPageVisibility, ImplementedAs=visibilityState] readonly a ttribute DOMString webkitVisibilityState;
219 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute boolean webkitHidden; 219 [MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute boolean webkitHidden;
220 220
221 readonly attribute HTMLScriptElement currentScript; 221 readonly attribute HTMLScriptElement currentScript;
222 }; 222 };
223 223
224 Document implements GlobalEventHandlers; 224 Document implements GlobalEventHandlers;
225 Document implements ParentNode; 225 Document implements ParentNode;
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698