Sign in
cobalt
/
cobalt
/
07081467c3d00b04a6a1162e0566a5a8b9cfe2d5
/
.
/
third_party
/
web_platform_tests
/
common
/
reftest-wait.js
blob: 87816f8345225dee5320a02f97954455713e3c78 [
file
] [
log
] [
blame
]
function
takeScreenshot
()
{
document
.
documentElement
.
classList
.
remove
(
"reftest-wait"
);
}
function
takeScreenshotDelayed
(
timeout
)
{
setTimeout
(
function
()
{
takeScreenshot
();
},
timeout
);
}