https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 66f1ce9def6c201aaebed7feefe12c7a68513a53 authored by Nicolas Pena on 12 December 2018, 18:54:14 UTC
[EventTiming] Ship First Input Timing
Tip revision: 66f1ce9
idlharness.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: script=/common/media.js

'use strict';

// https://w3c.github.io/remoteplayback/

idl_test(
  ['remote-playback'],
  ['html', 'dom'],
  idl_array => {
    try {
      const media = document.createElement('video');
      media.src = getVideoURI('movie_5');
      media.width = media.height = 10;
      document.body.appendChild(media);
      self.media = media;
    } catch (e) {
      // Will be surfaced when media is undefined below.
    }

    idl_array.add_objects({
      HTMLVideoElement: ['media'],
      RemotePlayback: ['media.remote']
    });
  }
);
back to top