mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00:00
11 lines
322 B
HTML
11 lines
322 B
HTML
<html>
|
|
<head></head>
|
|
<body>
|
|
<script>
|
|
var link = document.createElement("link");
|
|
document.head.appendChild(link);
|
|
link.setAttribute("rel", "stylesheet");
|
|
link.setAttribute("href", "data:text/css,body{background:green}");
|
|
</script>
|
|
</body>
|
|
</html>
|