style_document.html (657B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf8"> 5 <title>Test style document</title> 6 <!-- Any copyright is dedicated to the Public Domain. 7 - http://creativecommons.org/publicdomain/zero/1.0/ --> 8 <style> 9 body { color: lime; } 10 </style> 11 <link href="style_document.css" rel="stylesheet"> 12 <script> 13 "use strict"; 14 const s = new CSSStyleSheet(); 15 s.replaceSync("body { background-color: blue }"); 16 document.adoptedStyleSheets.push(s); 17 </script> 18 </head> 19 <body> 20 <iframe src="https://example.org/browser/devtools/shared/commands/resource/tests/style_iframe.html"></iframe> 21 </body> 22 </html>