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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/webusb/usbConnectionEvent.https.html

Issue 2789723003: Migrate WebUSB LayoutTests into external/wpt (Closed)
Patch Set: Created 3 years, 8 months 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script> 2 <script src="/resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="/resources/testharnessreport.js"></script>
4 <script src="resources/fake-devices.js"></script> 4 <script src="resources/fake-devices.js"></script>
5 <script src="resources/usb-helpers.js"></script> 5 <script src="resources/usb-helpers.js"></script>
6 <script src="resources/webusb-test.js"></script> 6 <script src="resources/webusb-test.js"></script>
7 <script> 7 <script>
8 'use strict'; 8 'use strict';
9 9
10 usb_test(() => { 10 usb_test(() => {
11 navigator.usb.test.addFakeDevice(fakeDeviceInit); 11 navigator.usb.test.addFakeDevice(fakeDeviceInit);
12 12
13 return navigator.usb.getDevices().then(devices => { 13 return navigator.usb.getDevices().then(devices => {
(...skipping 13 matching lines...) Expand all
27 } 27 }
28 28
29 try { 29 try {
30 new USBConnectionEvent('connect', {}) 30 new USBConnectionEvent('connect', {})
31 assert_unreached('expected TypeError'); 31 assert_unreached('expected TypeError');
32 } catch (err) { 32 } catch (err) {
33 assert_true(err instanceof TypeError); 33 assert_true(err instanceof TypeError);
34 } 34 }
35 }, 'Cannot construct a USBConnectionEvent without a device'); 35 }, 'Cannot construct a USBConnectionEvent without a device');
36 </script> 36 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698