Index: Source/core/frame/UseCounter.cpp |
diff --git a/Source/core/frame/UseCounter.cpp b/Source/core/frame/UseCounter.cpp |
index f8d9a2a3700008b8a14ed8306fe0087ebba0725a..f0f26d4d6f254edfef24042bdf2cd69dee24d08e 100644 |
--- a/Source/core/frame/UseCounter.cpp |
+++ b/Source/core/frame/UseCounter.cpp |
@@ -623,9 +623,6 @@ String UseCounter::deprecationMessage(Feature feature) |
case PrefixedPerformanceTimeline: |
return "'window.performance.webkitGet*' methods have been deprecated. Please use the unprefixed 'performance.get*' methods instead."; |
- case DocumentClear: |
- return "document.clear() is deprecated. This method doesn't do anything."; |
- |
// HTML Media Capture |
case CaptureAttributeAsEnum: |
return "Using the 'capture' attribute as an enum is deprecated. Please use it as a boolean and specify the media types that should be accepted in the 'accept' attribute."; |
@@ -634,12 +631,6 @@ String UseCounter::deprecationMessage(Feature feature) |
case KeyboardEventKeyLocation: |
return "'KeyboardEvent.keyLocation' is deprecated. Please use 'KeyboardEvent.location' instead."; |
- case CaptureEvents: |
- return "captureEvents() is deprecated. This method doesn't do anything."; |
- |
- case ReleaseEvents: |
- return "releaseEvents() is deprecated. This method doesn't do anything."; |
- |
case ConsoleMarkTimeline: |
return "console.markTimeline is deprecated. Please use the console.timeStamp instead."; |