https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ba2d3606cd94cb31f5832db1aa35714601e70db4 authored by Ian Kilpatrick on 16 March 2018, 20:51:08 UTC
[shapes] Remove shape-outside avoiding behaviour for new-FCs/replaced.
Tip revision: ba2d360
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