summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/cssom/insertrule-syntax-error-01.html
blob: 83d592ee157271c82d014ce59eae647e053c3f8d (plain)
1
2
3
4
5
6
7
8
<!DOCTYPE html>
<style>
p { color: green; }
</style>
<script>
document.styleSheets[0].insertRule("p { color: red; } garbage", 1);
</script>
<p>This text should be green.</p>