https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 962d90000cca374f4756bc65ea024e06c0150499 authored by Philip Jägenstedt on 22 December 2018, 11:59:40 UTC
DO NOT MERGE: probe for idlharness.js flakiness
Tip revision: 962d900
historical.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Historical features</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
</head>
<body>
  <script>
  // https://lists.w3.org/Archives/Public/public-media-capture/2015Nov/0012.html
  test(function() {
    assert_false(MediaStream.prototype.hasOwnProperty('onactive'));
  }, 'the deprecated MediaStream `onactive` event handler property is not available');
  </script>
</body>
</html>
back to top