Side by Side Diff: third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/fast/xmlhttprequest/xmlhttprequest-send-sharedarraybuffer.html
Issue 1526183004:
Prevent SharedArrayBuffer views from being used in bindings (Closed)
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: some tests
Created 3 years, 11 months ago
Use n/p to move between diff chunks;
N/P to move between comments.
Draft comments are only viewable by you.
7 description('This test checks if sending a SharedArrayBuffer throws an exception
');
8
9 var xhr = new XMLHttpRequest();
10 xhr.open('POST', 'resources/plist.app', true);
11
12 shouldThrow('xhr.send(new Uint8Array(new SharedArrayBuffer(10)))', '"TypeError:
Failed to execute \'send\' on \'XMLHttpRequest\': parameter 1 is a view of a Sha
redArrayBuffer."');
Issue 1526183004: Prevent SharedArrayBuffer views from being used in bindings
(Closed)
Created 5 years ago by binji
Modified 3 years, 10 months ago
Reviewers: esprehn, jbroman
Base URL: https://chromium.googlesource.com/chromium/src.git@master
Comments: 0