Closed
Bug 1168188
Opened 9 years ago
Closed 9 years ago
DataView objects cannot be cloned
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
DUPLICATE
of bug 789594
People
(Reporter: kyle_fung, Unassigned)
References
()
Details
DataView cannot be cloned
This is timing out the following in WebGL 1.0.2 conformance tests:
https://www.khronos.org/registry/webgl/conformance-suites/1.0.3/conformance/typedarrays/typed-arrays-in-workers.html
Test case:
<script>
new Worker('worker.js')
</script>
worker.js:
console.log("Foo");
buffer = new ArrayBuffer(500);
dv = new DataView(buffer);
postMessage(dv);
Updated•9 years ago
|
Updated•9 years ago
|
Flags: needinfo?(sphink)
Updated•9 years ago
|
Status: NEW → RESOLVED
Closed: 9 years ago
Flags: needinfo?(sphink)
Resolution: --- → DUPLICATE
Assignee | ||
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•