1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37

android_webview / test / shell / assets / key-system-test.html [blame]

<!DOCTYPE html>

<html>
<script>

var result;

function success(keySystemAccess) {
  result = 'supported';
}

function failure(error) {
  result = error.name;
}

function isKeySystemSupported(keySystem) {
  // requestMediaKeySystemAccess() checks for video/mp4 support, so this
  // is only available if proprietary codecs are enabled.
  navigator
      .requestMediaKeySystemAccess(
          keySystem,
          [
            {
              videoCapabilities :
                  [ {contentType : 'video/mp4; codecs=avc1.4D000C'} ]
            }
          ])
      .then(success, failure);
}

function areProprietaryCodecsSupported() {
  var video = document.createElement('video');
  return video.canPlayType('video/mp4; codecs=avc1');
}

</script>
</html>