https://github.com/web-platform-tests/wpt
Revision 9085adfbc6ebbed6d4fdea880e46eb433d4df5ef authored by Mike Pennisi on 28 November 2018, 17:41:59 UTC, committed by Mike Pennisi on 28 November 2018, 17:46:14 UTC
Without this change, `./wpt run` does not find an appropriate
pre-generated manifest file and attempts to generate one from scratch.
This causes out-of-memory errors in Taskcluster.
1 parent 725e960
Raw File
Tip revision: 9085adfbc6ebbed6d4fdea880e46eb433d4df5ef authored by Mike Pennisi on 28 November 2018, 17:41:59 UTC
Explicitly download manifest
Tip revision: 9085adf
reftest-wait.html
<!DOCTYPE html>
<html class="reftest-wait">
<title>Test infrastructure should support 'reftest-wait'</title>
<link rel="match" href="reftest-wait-ref.html">
<style>
.marker {
    margin-bottom: 10px;
    background: red;
    height: 50px;
    width: 50px;
}
</style>
<script>
setTimeout(function() {
    document.querySelector(".marker").style.background = 'green';
    document.documentElement.classList.remove("reftest-wait");
}, 1000);
</script>
<div class="marker"></div>
<div>The box above should be green.</div>
</html>
back to top