diff --git a/2dcontext/transformations/2d.transformation.getTransform.html b/2dcontext/transformations/2d.transformation.getTransform.html
new file mode 100644
index 00000000000000..664efd50e63dc0
--- /dev/null
+++ b/2dcontext/transformations/2d.transformation.getTransform.html
@@ -0,0 +1,39 @@
+
+
+
+
+
diff --git a/offscreen-canvas/conformance-requirements/2d.missingargs.html b/offscreen-canvas/conformance-requirements/2d.missingargs.html
index 9aa437c0cddcc5..67152573912203 100644
--- a/offscreen-canvas/conformance-requirements/2d.missingargs.html
+++ b/offscreen-canvas/conformance-requirements/2d.missingargs.html
@@ -30,7 +30,6 @@ 2d.missingargs
assert_throws(new TypeError(), function() { ctx.transform(1, 0, 0, 1, 0); });
}
if (ctx.setTransform) {
- assert_throws(new TypeError(), function() { ctx.setTransform(); });
assert_throws(new TypeError(), function() { ctx.setTransform(1); });
assert_throws(new TypeError(), function() { ctx.setTransform(1, 0); });
assert_throws(new TypeError(), function() { ctx.setTransform(1, 0, 0); });
diff --git a/offscreen-canvas/conformance-requirements/2d.missingargs.worker.js b/offscreen-canvas/conformance-requirements/2d.missingargs.worker.js
index 8f8d00ee3a5308..755e881eb06e03 100644
--- a/offscreen-canvas/conformance-requirements/2d.missingargs.worker.js
+++ b/offscreen-canvas/conformance-requirements/2d.missingargs.worker.js
@@ -26,7 +26,6 @@ if (ctx.transform) { // (avoid spurious failures, since the aim here is not to t
assert_throws(new TypeError(), function() { ctx.transform(1, 0, 0, 1, 0); });
}
if (ctx.setTransform) {
- assert_throws(new TypeError(), function() { ctx.setTransform(); });
assert_throws(new TypeError(), function() { ctx.setTransform(1); });
assert_throws(new TypeError(), function() { ctx.setTransform(1, 0); });
assert_throws(new TypeError(), function() { ctx.setTransform(1, 0, 0); });
diff --git a/offscreen-canvas/tools/tests2d.yaml b/offscreen-canvas/tools/tests2d.yaml
index 6b1876d803f4e1..0b346bb658e831 100644
--- a/offscreen-canvas/tools/tests2d.yaml
+++ b/offscreen-canvas/tools/tests2d.yaml
@@ -8800,7 +8800,6 @@
@assert throws TypeError ctx.transform(1, 0, 0, 1, 0);
}
if (ctx.setTransform) {
- @assert throws TypeError ctx.setTransform();
@assert throws TypeError ctx.setTransform(1);
@assert throws TypeError ctx.setTransform(1, 0);
@assert throws TypeError ctx.setTransform(1, 0, 0);
diff --git a/offscreen-canvas/transformations/2d.transformation.getTransform.html b/offscreen-canvas/transformations/2d.transformation.getTransform.html
new file mode 100644
index 00000000000000..b3b70ac208674c
--- /dev/null
+++ b/offscreen-canvas/transformations/2d.transformation.getTransform.html
@@ -0,0 +1,40 @@
+
+
+
+
+