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

Unified Diff: core/dom/Text.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/dom/Range.idl ('k') | core/dom/TreeWalker.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/dom/Text.idl
diff --git a/core/dom/Text.idl b/core/dom/Text.idl
index a770f78900be0eab3478c05db4a74efea999f2dc..af7360a34629ec23d34029881a3fab0576522261 100644
--- a/core/dom/Text.idl
+++ b/core/dom/Text.idl
@@ -18,15 +18,17 @@
*/
[
Constructor([Default=NullString] optional DOMString data),
- ConstructorCallWith=ScriptExecutionContext,
+ ConstructorCallWith=Document,
CustomToV8
] interface Text : CharacterData {
// DOM Level 1
-
- [RaisesException] Text splitText([IsIndex,Default=Undefined] optional unsigned long offset);
+ [RaisesException] Text splitText(unsigned long offset);
// Introduced in DOM Level 3:
readonly attribute DOMString wholeText;
- Text replaceWholeText([Default=Undefined] optional DOMString content);
+ [MeasureAs=TextReplaceWholeText] Text replaceWholeText(DOMString content); // Removed from DOM4.
+
+ // Shadow DOM API
+ [EnabledAtRuntime=ShadowDOM, PerWorldBindings] NodeList getDestinationInsertionPoints();
};
« no previous file with comments | « core/dom/Range.idl ('k') | core/dom/TreeWalker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698