diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-06-05 19:29:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 19:29:41 +0200 |
commit | 706b75d7421a33a54f51ceafc0747be4a646c707 (patch) | |
tree | b27cb1cfd97c95c38a161479000da9b70a44325c /tools/wpt/testharnessreport.js | |
parent | 5bed6d56ec05766d8d0d54bcb828c73228364113 (diff) |
tests: fix wpt runner expected test file failures (#10856)
Diffstat (limited to 'tools/wpt/testharnessreport.js')
-rw-r--r-- | tools/wpt/testharnessreport.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/wpt/testharnessreport.js b/tools/wpt/testharnessreport.js index b1852a488..d3e783376 100644 --- a/tools/wpt/testharnessreport.js +++ b/tools/wpt/testharnessreport.js @@ -13,12 +13,3 @@ window.add_result_callback(({ message, name, stack, status }) => { window.add_completion_callback((_tests, _harnessStatus) => { Deno.exit(0); }); - -globalThis.document = { - // document.body shim for FileAPI/file/File-constructor.any.html test - body: { - toString() { - return "[object HTMLBodyElement]"; - }, - }, -}; |