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

Unified Diff: third_party/WebKit/Source/core/editing/Selection.idl

Issue 1908423003: Make Selection.prototype.toString() enumerable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test Created 4 years, 8 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
Index: third_party/WebKit/Source/core/editing/Selection.idl
diff --git a/third_party/WebKit/Source/core/editing/Selection.idl b/third_party/WebKit/Source/core/editing/Selection.idl
index 19be361c58dc0cdc7ef4ef360c931ce40ae1450d..b6f216f57fbbc88af72a2c255fff2c20e47083e1 100644
--- a/third_party/WebKit/Source/core/editing/Selection.idl
+++ b/third_party/WebKit/Source/core/editing/Selection.idl
@@ -58,10 +58,7 @@
[MeasureAs=SelectionSelectAllChildren, RaisesException] void selectAllChildren(Node node);
[MeasureAs=SelectionDeleteDromDocument, CustomElementCallbacks] void deleteFromDocument();
[MeasureAs=SelectionContainsNode] boolean containsNode(Node node, optional boolean allowPartialContainment = false);
- // TODO(philipj): The spec does not use [NotEnumerable]. See also:
- // https://codereview.chromium.org/345983004/
- // https://www.w3.org/Bugs/Public/show_bug.cgi?id=26179
- [MeasureAs=SelectionDOMString, NotEnumerable] stringifier DOMString();
+ [MeasureAs=SelectionDOMString] stringifier;
// Non-standard APIs

Powered by Google App Engine
This is Rietveld 408576698