Chromium Code Reviews| Index: Source/core/frame/UseCounter.cpp |
| diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp |
| index ead539dbcf924b3aacf8b8c3dbede2b9d6d4fd70..7d85bee1a3385740dfb7076aa32466e5df684489 100644 |
| --- a/Source/core/frame/UseCounter.cpp |
| +++ b/Source/core/frame/UseCounter.cpp |
| @@ -712,6 +712,9 @@ String UseCounter::deprecationMessage(Feature feature) |
| case ElementSetAttributeNodeNS: |
| return "'Element.setAttributeNodeNS' is deprecated and has been removed from DOM4 (http://w3.org/tr/dom)."; |
| + case NodeIteratorDetach: |
| + return "'NodeIterator.detach' is now a no-op, as per DOM4 (http://dom.spec.whatwg.org/#dom-nodeiterator-detach)."; |
|
tkent
2014/04/28 12:15:38
It's not DOM*4*.
arv (Not doing code reviews)
2014/04/28 14:22:24
s/DOM4/DOM/
Inactive
2014/04/28 14:26:20
Done.
Inactive
2014/04/28 14:26:20
Done.
|
| + |
| // Features that aren't deprecated don't have a deprecation message. |
| default: |
| return String(); |