You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a devtools console, evaluate console.log(new DOMMatrix().toString())
In a devtools web worker console, evaluate console.log(new DOMMatrix().toString())
What is the expected result?
new DOMMatrix().toString() behaves the same in the main thread as in a web worker, new DOMMatrix().toString() should be matrix(1, 0, 0, 1, 0, 0).
What happens instead?
Inside the main thread: new DOMMatrix().toString() === matrix(1, 0, 0, 1, 0, 0)
Inside a web worker : new DOMMatrix().toString() === [object DOMMatrix]
Additional Information
The same issue occurs for DOMMatrixReadOnly.
The text was updated successfully, but these errors were encountered:
Spec Link
https://drafts.fxtf.org/geometry/#dommatrixreadonly
What steps will reproduce the problem?
console.log(new DOMMatrix().toString())
console.log(new DOMMatrix().toString())
What is the expected result?
new DOMMatrix().toString()
behaves the same in the main thread as in a web worker,new DOMMatrix().toString()
should bematrix(1, 0, 0, 1, 0, 0)
.What happens instead?
Inside the main thread:
new DOMMatrix().toString()
===matrix(1, 0, 0, 1, 0, 0)
Inside a web worker :
new DOMMatrix().toString()
===[object DOMMatrix]
Additional Information
The same issue occurs for
DOMMatrixReadOnly
.The text was updated successfully, but these errors were encountered: