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><!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --><metacharset="UTF-8"><title>OffscreenCanvas test: 2d.composite.globalAlpha.invalid</title><scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script><scriptsrc="/html/canvas/resources/canvas-tests.js"></script><h1>2d.composite.globalAlpha.invalid</h1><pclass="desc"></p><script>vart=async_test("");vart_pass=t.done.bind(t);vart_fail=t.step_func(function(reason){throwreason;});t.step(function(){varcanvas=newOffscreenCanvas(100,50);varctx=canvas.getContext('2d');ctx.globalAlpha=0.5;// This may not set it to exactly 0.5 if it is rounded/quantised, so// remember for future comparisons.vara=ctx.globalAlpha;ctx.globalAlpha=Infinity;_assertSame(ctx.globalAlpha,a,"ctx.globalAlpha","a");ctx.globalAlpha=-Infinity;_assertSame(ctx.globalAlpha,a,"ctx.globalAlpha","a");ctx.globalAlpha=NaN;_assertSame(ctx.globalAlpha,a,"ctx.globalAlpha","a");t.done();});</script>