mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-02 10:34:27 +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> |