https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3e2168c907f6026f4a79e6359ca787c799b2113f authored by Tommy Steimel on 12 April 2018, 15:39:13 UTC
Enable Modern Media Controls and fix layout tests
Tip revision: 3e2168c
worklet-test-utils.js
// Returns a reference to a worklet object corresponding to a given type.
function get_worklet(type) {
  if (type == 'animation')
    return window.animationWorklet;
  if (type == 'layout')
    return CSS.layoutWorklet;
  if (type == 'paint')
    return CSS.paintWorklet;
  return undefined;
}
back to top