https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3ebbd7b9a33f6915cb4885e9193b1630538c1ea3 authored by Lan Wei on 20 December 2018, 01:32:17 UTC
Rename pointerevent_pointerout_pen-manual.html to pointerevent_pointerout_pen.html
Tip revision: 3ebbd7b
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