Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(492)

Unified Diff: third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data-keyboard.html

Issue 2570203004: Fix low risk nullable => non nullable change for NavigatorLanguage.language (Closed)
Patch Set: Added layout test for inputevent.data and modified layout test expectation for two input tests Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data-keyboard.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data-keyboard.html b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data-keyboard.html
index 1b34f6203f43edbe99bd92239f2f898f5222d334..c8b37a27efe6ff36365cd2bdfe1ea3dfaef5f1df 100644
--- a/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data-keyboard.html
+++ b/third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data-keyboard.html
@@ -39,7 +39,7 @@ test(function() {
// Typing
testKeyDownData('a', [], 'a');
testKeyDownData('4', [], '4');
- testKeyDownData('Backspace', [], null);
+ testKeyDownData('Backspace', [], '');
testKeyDownData('L', ['shiftKey'], 'L');
testKeyDownData('^', ['shiftKey'], '^');
testKeyDownData(' ', [], ' ');

Powered by Google App Engine
This is Rietveld 408576698