Revision b1ed161d7cffd6ba7a0ebe661b3a84aa6d533d70 authored by Anjana Sofia Vakil on 05 August 2016, 12:51:34 UTC, committed by Andreas Tolfsen on 05 August 2016, 12:51:34 UTC
Function scope is the default for Pytest fixtures (http://doc.pytest.org/en/latest/builtin.html#_pytest.python.fixture), so the `scope='function'` parameter is unnecessary.
1 parent 59f2982
Raw File
historical.html
<!DOCTYPE HTML>
<meta charset=utf-8>
<title>Historical touch events features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="touch-support.js"></script>
<body>
<script>
test(function() {
  assert_false("identifiedTouch" in TouchList.prototype,
               "Should not be supported on the prototype");

  var touchList = document.createTouchList();
  assert_false("identifiedTouch" in touchList,
               "Should not be supported on the instance");
}, "TouchList::identifiedTouch");
</script>
back to top