Index: third_party/WebKit/LayoutTests/fast/events/constructors/keyboard-event-constructor.html |
diff --git a/third_party/WebKit/LayoutTests/fast/events/constructors/keyboard-event-constructor.html b/third_party/WebKit/LayoutTests/fast/events/constructors/keyboard-event-constructor.html |
index 254dbc66293c2e158b0ae72cfde63a841c955f2d..3a9f0d3d05e314ea0bb2d82203d73878da95cb3e 100644 |
--- a/third_party/WebKit/LayoutTests/fast/events/constructors/keyboard-event-constructor.html |
+++ b/third_party/WebKit/LayoutTests/fast/events/constructors/keyboard-event-constructor.html |
@@ -116,12 +116,6 @@ shouldBe("new KeyboardEvent('eventType', { location: KeyboardEvent.DOM_KEY_LOCAT |
shouldBe("new KeyboardEvent('eventType', { location: 4294967294 }).location", "4294967294"); |
shouldBe("new KeyboardEvent('eventType', { location: 4294967295 }).location", "4294967295"); |
-// test for deprecated 'keyLocation'. |
-shouldBe("new KeyboardEvent('eventType', { keyLocation: 0 }).keyLocation", "0"); |
-shouldBe("new KeyboardEvent('eventType', { keyLocation: 1 }).keyLocation", "1"); |
-shouldBe("new KeyboardEvent('eventType', { keyLocation: 1 }).location", "1"); |
-shouldBe("new KeyboardEvent('eventType', { location: 1 }).keyLocation", "1"); |
- |
// numbers out of the unsigned long range. |
// 2^{53}-1, the largest number that can be exactly represented by double. |
shouldBe("new KeyboardEvent('eventType', { location: 9007199254740991 }).location", "4294967295"); |