dom/workers/test/test_chromeWorker.html

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 <!--
michael@0 2 Any copyright is dedicated to the Public Domain.
michael@0 3 http://creativecommons.org/publicdomain/zero/1.0/
michael@0 4 -->
michael@0 5 <html>
michael@0 6 <head>
michael@0 7 <title>Test for DOM Worker Threads</title>
michael@0 8 <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
michael@0 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
michael@0 10 </head>
michael@0 11 <body>
michael@0 12 <pre id="test">
michael@0 13 <script class="testbody" type="text/javascript">
michael@0 14
michael@0 15 try {
michael@0 16 var worker = new ChromeWorker("simpleThread_worker.js");
michael@0 17 ok(false, "ChromeWorker constructor should be blocked!");
michael@0 18 }
michael@0 19 catch (e) {
michael@0 20 ok(true, "ChromeWorker constructor wasn't blocked!");
michael@0 21 }
michael@0 22
michael@0 23 </script>
michael@0 24 </pre>
michael@0 25 </body>
michael@0 26 </html>
michael@0 27

mercurial