Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf8">
<title>Test style document</title>
<!-- Any copyright is dedicated to the Public Domain.
<style>
body { color: lime; }
</style>
<link href="style_document.css" rel="stylesheet">
<script>
"use strict";
const s = new CSSStyleSheet();
s.replaceSync("body { background-color: blue }");
document.adoptedStyleSheets.push(s);
</script>
</head>
<body>
</body>
</html>