https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b57eb2f370c46465baf71c3422ecb945cfcea7a4 authored by Darren Shen on 19 March 2018, 06:54:15 UTC
[css-typed-om] Add support for min/max-width/height.
Tip revision: b57eb2f
name-as-accidental-global.js
"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