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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/GUM-trivial-constraint.html

Issue 2020083002: Import wpt@1b61dad2be6c5100beb565e91c58b8c1084b3c7d (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing tests 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/GUM-trivial-constraint.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/GUM-trivial-constraint.html b/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/GUM-trivial-constraint.html
index fe14c4d33589958649ef8a02237a4a2831b6651f..c24d02b84614552072f607db745540b6d1723d1d 100644
--- a/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/GUM-trivial-constraint.html
+++ b/third_party/WebKit/LayoutTests/imported/wpt/mediacapture-streams/GUM-trivial-constraint.html
@@ -18,7 +18,7 @@ constraint (width &gt;=0) in getUserMedia works</p>
<script>
var t = async_test("Tests that setting a trivial mandatory constraint in getUserMedia works", {timeout:10000});
t.step(function() {
- navigator.getUserMedia({video: {mandatory: {width: {min:0}}}}, t.step_func(function (stream) {
+ navigator.getUserMedia({video: {width: {min:0}}}, t.step_func(function (stream) {
assert_equals(stream.getVideoTracks().length, 1, "the media stream has exactly one video track");
t.done();
}), t.step_func(function(error) {

Powered by Google App Engine
This is Rietveld 408576698