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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/inputevents/inputevent-data.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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>InputEvent data should be non nullable</title>
foolip 2016/12/15 10:53:49 This can be upstreamed directly to imported/wpt/in
3 <script src="../../../resources/testharness.js"></script>
4 <script src="../../../resources/testharnessreport.js"></script>
5 <script>
6 test(function() {
7 assert_equals(new InputEvent('type', { data: null }).data, "null");
8 }, 'InputEvent.data should be non nullable');
9 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698