- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 01 Dec 2009 07:22:57 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/workers
In directory hutz:/tmp/cvs-serv27845
Modified Files:
Overview.html
Log Message:
Oops, wrong demo page. (whatwg r4388)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/workers/Overview.html,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -d -r1.202 -r1.203
--- Overview.html 1 Dec 2009 07:13:44 -0000 1.202
+++ Overview.html 1 Dec 2009 07:22:55 -0000 1.203
@@ -701,10 +701,10 @@
farmed out to ten subworkers.<p>The main page is as follows, it just reports the result:<pre><!DOCTYPE HTML>
<html>
<head>
- <title>Worker example: One-core computation</title>
+ <title>Worker example: Multicore computation</title>
</head>
<body>
- <p>The highest prime number discovered so far is: <output id="result"></output></p>
+ <p>Result: <output id="result"></output></p>
<script>
var worker = new Worker('worker.js');
worker.onmessage = function (event) {
Received on Tuesday, 1 December 2009 07:23:07 UTC