blob: fcd71338ca3bd183f8f79ad62503276ed06ccd79 [file] [log] [blame]
<!--
Copyright 2020 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html>
<meta charset="utf-8">
<title>Dedicated workers with different scripts</title>
<script>
new Worker('./worker1.js');
new Worker('./worker2.js');
</script>