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

Unified Diff: third_party/WebKit/LayoutTests/usb/usb-connection-event.html

Issue 2789723003: Migrate WebUSB LayoutTests into external/wpt (Closed)
Patch Set: Add README.md and more comments explaining the polyfill Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/usb/usb-connection-event.html
diff --git a/third_party/WebKit/LayoutTests/usb/usb-connection-event.html b/third_party/WebKit/LayoutTests/usb/usb-connection-event.html
deleted file mode 100644
index 59753f924be846c80b7aa442d2e39b41a8172863..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/usb/usb-connection-event.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="resources/fake-devices.js"></script>
-<script src="resources/usb-helpers.js"></script>
-<script src="resources/webusb-test.js"></script>
-<script>
-'use strict';
-
-usb_test(() => {
- return getFakeDevice().then(({ device }) => {
- let evt = new USBConnectionEvent('connect', { device: device });
- assert_equals(evt.type, 'connect');
- assert_equals(evt.device, device);
- });
-}, 'Can construct a USBConnectionEvent with a device');
-
-test(t => {
- assert_throws(TypeError(), () =>
- new USBConnectionEvent('connect', { device: null }));
- assert_throws(TypeError(), () => new USBConnectionEvent('connect', {}));
-}, 'Cannot construct a USBConnectionEvent without a device');
-</script>
« no previous file with comments | « third_party/WebKit/LayoutTests/usb/usb.html ('k') | third_party/WebKit/LayoutTests/usb/usb-in-transfer-result.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698