| Index: Source/core/page/UseCounter.cpp
|
| diff --git a/Source/core/page/UseCounter.cpp b/Source/core/page/UseCounter.cpp
|
| index 1f4aa00f4113ee4af6451f3e49b9870f0bf8e058..b4910424c020c11e5821ef658c9980f37dc7707c 100644
|
| --- a/Source/core/page/UseCounter.cpp
|
| +++ b/Source/core/page/UseCounter.cpp
|
| @@ -644,6 +644,10 @@ String UseCounter::deprecationMessage(Feature feature)
|
| 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.";
|
|
|
| + // Keyboard Event (DOM Level 3)
|
| + case KeyboardEventKeyLocation:
|
| + return "'KeyboardEvent.keyLocation'' is deprecated. Please use 'KeyboardEvent.location' instead.";
|
| +
|
| // Features that aren't deprecated don't have a deprecation message.
|
| default:
|
| return String();
|
|
|