Bug 1066410 - Serious color distortion happened when plays WebRTC. r=jesup, a=bajaj
[gecko.git] / dom / workers / test / csp_worker.js
blob0b6a1ef514acacb7a317bb68e77ab2cfb42ab28c
1 /**
2  * Any copyright is dedicated to the Public Domain.
3  * http://creativecommons.org/publicdomain/zero/1.0/
4  */
5 onmessage = function(event) {
6   if (event.data == 0) {
7     postMessage(eval('40 + 2'));
8   } else if (event.data > 0) {
9     var worker = new Worker('csp_worker.js');
10     worker.postMessage(event.data - 1);
11   } else if (event.data == -1) {
12     importScripts('data:application/javascript;base64,ZHVtcCgnaGVsbG8gd29ybGQnKQo=');
13   } else if (event.data == -2) {
14     importScripts('javascript:dump(123);');
15   }