Raw File
"use strict";
importScripts("/resources/testharness.js");

var name = "something else";

// This just makes the test name not "Untitled"
test(() => { }, `Declaring name as an accidental global must not cause a harness error for ${self.constructor.name}`);

done();
back to top