This is a testharness.js-based test.
FAIL SharedArrayBuffer cloning via the Notifications API's data member: basic case assert_throws: function "() => {
    new Notification("Bob: Hi", { data: new SharedArrayBuffer() });
  }" threw object "ReferenceError: SharedArrayBuffer is not defined" that is not a DOMException DataCloneError: property "code" is equal to undefined, expected 25
FAIL SharedArrayBuffer cloning via the Notifications API's data member: is interleaved correctly assert_throws: function "() => {
    new Notification("Bob: Hi", { data: [
      { get x() { getter1Called = true; return 5; } },
      new SharedArrayBuffer(),
      { get x() { getter2Called = true; return 5; } }
    ]});
  }" threw object "ReferenceError: SharedArrayBuffer is not defined" that is not a DOMException DataCloneError: property "code" is equal to undefined, expected 25
Harness: the test ran to completion.

