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

Unified Diff: Source/core/dom/DOMStringList.idl

Issue 966843002: Mark DOMStringList.contains() as deprecated, add console warning. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 3 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 | « LayoutTests/storage/indexeddb/version-change-abort-expected.txt ('k') | Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMStringList.idl
diff --git a/Source/core/dom/DOMStringList.idl b/Source/core/dom/DOMStringList.idl
index 3821bd83be36d7c9cc5509d53ca1d760da4a6201..0d2b68ac7579e13534d91cef5b5d36d6d115f777 100644
--- a/Source/core/dom/DOMStringList.idl
+++ b/Source/core/dom/DOMStringList.idl
@@ -32,6 +32,6 @@
readonly attribute unsigned long length;
getter DOMString? (unsigned long index);
- [CallWith=ExecutionContext] DOMString? item(unsigned long index);
- [CallWith=ExecutionContext,MeasureAs=DOMStringListContains] boolean contains(DOMString string);
+ [CallWith=ExecutionContext,DeprecateAs=V8DOMStringList_Item_Method] DOMString? item(unsigned long index);
+ [CallWith=ExecutionContext,DeprecateAs=DOMStringListContains] boolean contains(DOMString string);
};
« no previous file with comments | « LayoutTests/storage/indexeddb/version-change-abort-expected.txt ('k') | Source/core/frame/UseCounter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698