mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
10 lines
196 B
HTML
10 lines
196 B
HTML
|
<html>
|
||
|
<script>
|
||
|
function changeBackground() {
|
||
|
const color = location.hash.substr(1);
|
||
|
document.body.style.backgroundColor = color;
|
||
|
}
|
||
|
</script>
|
||
|
<body onload='changeBackground()'>
|
||
|
</body>
|
||
|
</html>
|