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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaDevices-enumerateDevices.html

Issue 2086283003: Update web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into wpt_import Created 4 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/imported/wpt/mediacapture-streams/MediaDevices-enumerateDevices.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaDevices-enumerateDevices.html b/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaDevices-enumerateDevices.html
deleted file mode 100644
index 806416e2c0e2f22a47a3b9ee4b57e01ae045fffe..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/MediaDevices-enumerateDevices.html
+++ /dev/null
@@ -1,47 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<title>enumerateDevices: test that enumerateDevices is present</title>
-<link rel="author" title="Dr Alex Gouaillard" href="mailto:agouaillard@gmail.com"/>
-<link rel="help" href="https://w3c.github.io/mediacapture-main/#enumerating-devices">
-<meta name='assert' content='Check that the enumerateDevices() method is present.'/>
-</head>
-<body>
-<h1 class="instructions">Description</h1>
-<p class="instructions">This test checks for the presence of the
-<code>navigator.mediaDevices.enumerateDevices()</code> method.</p>
-<div id='log'></div>
-<script src=/resources/testharness.js></script>
-<script src=/resources/testharnessreport.js></script>
-<script>
-"use strict";
-//NOTE ALEX: for completion, a test for ondevicechange event is missing.
-test(function () {
- assert_true(undefined !== navigator.mediaDevices.enumerateDevices, "navigator.mediaDevices.enumerateDevices exists");
- var p = navigator.mediaDevices.enumerateDevices()
- p.then(function(list){
- for(let mediainfo of list){
- // TODO check the type of mediainfo
- assert_true(undefined !== mediainfo.deviceId, "mediaInfo's deviceId should exist.");
- assert_true(undefined !== mediainfo.kind, "mediaInfo's kind should exist.");
- assert_true(undefined !== mediainfo.label, "mediaInfo's label should exist.");
- assert_true(undefined !== mediainfo.groupId, "mediaInfo's groupId should exist.");
- // TODO the values of some of those fields should be empty string by default if no permission has been requested.
- if( mediainfo.kind == "audioinput" ||
- mediainfo.kind == "videoinput") {
- // NOTE ALEX: looks like nobody has implemented that. How can I make it a separate test,
- // ... to have better granularity?
- // assert_true(undefined !== mediainfo.getCapabilities(), "MediaDeviceInfo.getCapabilities() exists.");
- // var cap = mediainfo.getcapabilities();
- } else if ( mediainfo.kind !== "audiooutput" ) {
- assert_unreached("mediainfo.kind should be one of 'audioinput', 'videoinput', or 'audiooutput'.")
- }
- }
- })
- p.catch(function(err){
- assert_unreached("A call to enumerateDevices() should never fail.");
- });
-}, "mediaDevices.enumerateDevices() is present and working on navigator");
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698