зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
267 B
HTML
14 строки
267 B
HTML
|
<!DOCTYPE html>
|
||
|
<head>
|
||
|
<style>
|
||
|
body { color: red; }
|
||
|
</style>
|
||
|
<script>
|
||
|
document.styleSheets[0].insertRule("body { color: green; }", 1);
|
||
|
document.querySelector("style").className = "foo";
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
This text should be green
|
||
|
</body>
|