Web Worker: Inline worker example

This is an example for inline worker that we creating 'on the fly' without the need to fetch our JavaScript code of the worker from another file.
It is useful method to create a self-contained page without having to create separate worker file.
With the new BlobBuilder interface, you can "inline" your worker in the same HTML file as your main logic by creating a BlobBuilder and appending the worker code as a string.