Add test for CompressionStream constructor error cases

Add test for CompressionStream constructor error cases, similarly to the one we
already have for DecompressionStream.
diff --git a/compression/compression-constructor-error.tentative.any.js b/compression/compression-constructor-error.tentative.any.js
new file mode 100644
index 0000000..2d5271c
--- /dev/null
+++ b/compression/compression-constructor-error.tentative.any.js
@@ -0,0 +1,15 @@
+// META: global=window,worker
+
+'use strict';
+
+test(t => {
+  assert_throws_js(TypeError, () => new CompressionStream('a'), 'constructor should throw');
+}, '"a" should cause the constructor to throw');
+
+test(t => {
+  assert_throws_js(TypeError, () => new CompressionStream(), 'constructor should throw');
+}, 'no input should cause the constructor to throw');
+
+test(t => {
+  assert_throws_js(Error, () => new CompressionStream({ toString() { throw Error(); } }), 'constructor should throw');
+}, 'non-string input should cause the constructor to throw');