summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/reftest/reftest_wait_TestRendered.html
blob: 4316d338b5c7e846cc281a1d84d9ffb4a5e99e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html class="reftest-wait">
<title>Test with reftest-wait</title>
<link rel=match href=green.html>
<style>
:root {background-color:red}
</style>
<script>
document.addEventListener("TestRendered",
                          function() {
                            document.documentElement.style.backgroundColor = "green";
                            document.documentElement.className = "";
                          });
</script>
</html>