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 <msw@chromium.org>
Commit-Queue: Arnaud Mandy <arnaud.mandy@intel.com>
Cr-Commit-Position: refs/heads/master@{#763204}

--

wpt-commits: 00587c9715fef9dac95bf102a6dfcbb20f5231b2
wpt-pr: 23260
This commit is contained in:
Arnaud Mandy 2020-04-28 11:47:33 +00:00
Родитель 28eea17403
Коммит 10a9376bb7
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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');
assert_equals(typeof screens[0].touchSupport, 'boolean');
}, 'self.getScreens returns at least 1 Screen');