From 10a9376bb7c45ee81050afa3eeae074195d380cc Mon Sep 17 00:00:00 2001 From: Arnaud Mandy Date: Tue, 28 Apr 2020 11:47:33 +0000 Subject: [PATCH] Bug 1633364 [wpt PR 23260] - wpt: Screen Enumeration: Add check for touchSupport type., a=testonly Automatic update from web-platform-tests wpt: Screen Enumeration: Add check for touchSupport type. touchSupport type check is added to screen enumeration test. Bug: 994889 Change-Id: I874e4f9f2b41a5c86297c87a851e61a287fedbe5 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2165752 Reviewed-by: Michael Wasserman Commit-Queue: Arnaud Mandy Cr-Commit-Position: refs/heads/master@{#763204} -- wpt-commits: 00587c9715fef9dac95bf102a6dfcbb20f5231b2 wpt-pr: 23260 --- .../screen_enumeration/getScreens.tentative.https.window.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/web-platform/tests/screen_enumeration/getScreens.tentative.https.window.js b/testing/web-platform/tests/screen_enumeration/getScreens.tentative.https.window.js index f8d5c4b34c92..14079b02c09a 100644 --- a/testing/web-platform/tests/screen_enumeration/getScreens.tentative.https.window.js +++ b/testing/web-platform/tests/screen_enumeration/getScreens.tentative.https.window.js @@ -26,4 +26,5 @@ promise_test(async testCase => { assert_equals(typeof screens[0].internal, 'boolean'); assert_equals(typeof screens[0].scaleFactor, 'number'); assert_equals(typeof screens[0].id, 'string'); -}, 'self.getScreens returns at least 1 Screen'); \ No newline at end of file + assert_equals(typeof screens[0].touchSupport, 'boolean'); +}, 'self.getScreens returns at least 1 Screen');