Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: third_party/WebKit/LayoutTests/fast/encoding/api/sharedarraybuffer.html

Issue 2812833003: Revert of [SharedArrayBuffer] Prevent SharedArrayBuffer being used in Web APIs (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/encoding/api/sharedarraybuffer.html
diff --git a/third_party/WebKit/LayoutTests/fast/encoding/api/sharedarraybuffer.html b/third_party/WebKit/LayoutTests/fast/encoding/api/sharedarraybuffer.html
deleted file mode 100644
index 161b546b07b79cdac705352f6532d9058bfab7da..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/encoding/api/sharedarraybuffer.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-<script>
-
-if (window.SharedArrayBuffer) {
- test(() => {
- const decoder = new TextDecoder('utf-8');
- assert_throws(null, () => {
- decoder.decode(new Uint8Array(new SharedArrayBuffer(4)));
- }, 'constructing TextDecoder with SharedArrayBuffer view should throw');
- }, 'decoding SharedArrayBuffer');
-}
-done();
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698