Revert "Bug 1977019 - re-enable hw video decoding testing. r=media-playback-reviewers,jolin" for causing win mda failures on test_hw_video_decoding.html
This reverts commit 158474bdc0cf585b701bc47921f0a7d84f7bb84d.
<!DOCTYPE html><title>IndexedDB inside of a WebWorker </title><linkrel="author"title="Microsoft"href="http://www.microsoft.com"><scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script><scriptsrc="resources/support.js"></script><script>vardb,count=0,t=async_test();t.add_cleanup(function(){indexedDB.deleteDatabase('webworker101');});t.step(function(){varworker=newWorker("resources/idbworker.js");worker.onmessage=t.step_func(function(e){switch(count){case0:assert_equals(e.data,true,'worker has idb object')breakcase1:assert_equals(e.data,"test","get(1) in worker")t.done()}count++});worker.postMessage(1);})</script>