summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/style-src/resources/style-src-inject-style.js
blob: 99a9c2a46450a5324668790f66f0fd9f873cd616 (plain)
1
2
3
4
5
document.write("<style>#content { margin-left: 2px; }</style>");

var s = document.createElement('style');
s.innerText = "#content { margin-right: 2px; }";
document.getElementsByTagName('body')[0].appendChild(s);