1
0
Fork 0
firefox/devtools/client/inspector/rules/test/doc_cssom.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
570 B
HTML

<!-- 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>