summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/input/input-device-constructor.html
blob: c2a202e86d2dea35dfb9a187de0e01e14849f4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<script>
description("This tests the constructor for the InputDeviceCapabilities DOM class.");

shouldBeFalse("new InputDeviceCapabilities().firesTouchEvents");
shouldBeTrue("new InputDeviceCapabilities({ firesTouchEvents: true }).firesTouchEvents");

</script>
</body>
</html>