Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /infrastructure/reftest/reftest_window_load.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>rel=match waits for window load</title>
<link rel=match href=green.html>
<script>
window.onload = () => {
const s = document.createElement('style');
s.innerText = ':root {background-color:green}';
document.body.appendChild(s);
};
</script>