https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 093b9474d12dc945dccdff7cc35ace71b60c9978 authored by moz-wptsync-bot on 13 March 2018, 19:14:12 UTC
Add a WPT test for calc font-variation-settings.
Tip revision: 093b947
compile_worker.js
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

this.importScripts("resources/load_wasm.js");

onmessage = function(msg) {
    createWasmModule()
        .then(postMessage)

}
back to top