mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
LibJS: Skip test262 tests with the CanBlockIsFalse flag
From test262 documentation, this flag means: The test file should only be run when the [[CanBlock]] property of the Agent Record executing the file is `false`. This patch stubs out the accessor for that internal slot and skips tests with the CanBlockIsFalse if that internal slot is true.
This commit is contained in:
parent
a7ff65a0c6
commit
a7073c3f1f
5 changed files with 49 additions and 0 deletions
13
Userland/Libraries/LibJS/Runtime/Agent.h
Normal file
13
Userland/Libraries/LibJS/Runtime/Agent.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace JS {
|
||||
|
||||
bool agent_can_suspend();
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue