Index: Source/core/frame/UseCounter.cpp |
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp |
index decf0a1c79281adf204f0eacade3e89615397dd2..735aba98b4bef16f83a842c811e1e721b565ab70 100644 |
--- a/Source/core/frame/UseCounter.cpp |
+++ b/Source/core/frame/UseCounter.cpp |
@@ -710,6 +710,15 @@ String UseCounter::deprecationMessage(Feature feature) |
case HTMLHtmlElementManifest: |
return "'HTMLHtmlElement.manifest' is deprecated. The manifest attribute only has an effect during the early stages of document load."; |
+ case DocumentCreateAttributeNS: |
+ return "'Document.createAttributeNS' is deprecated and has been removed from DOM4 (http://w3.org/tr/dom)."; |
+ |
+ case AttributeOwnerElement: |
+ return "'Attr.ownerElement' is deprecated and has been removed from DOM4 (http://w3.org/tr/dom)."; |
+ |
+ case ElementSetAttributeNodeNS: |
+ return "'Element.setAttributeNodeNS' is deprecated and has been removed from DOM4 (http://w3.org/tr/dom)."; |
+ |
// Features that aren't deprecated don't have a deprecation message. |
default: |
return String(); |