blob: 6c44cfcf98393621ce964f42f5010a0af5fd0f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<head>
<title>CSSOM test</title>
<script>
"use strict";
window.onload = function() {
const x = document.styleSheets[0];
x.insertRule("div { color: seagreen; }", 1);
// Add a rule with a leading newline, to test that inspector can handle it.
x.insertRule("\ndiv { font-weight: bold; }", 1);
};
</script>
<style>
span { }
</style>
</head>
<body>
<div id="target"> the ocean </div>
</body>
</html>
|