summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/content-security-policy/style-src/support/inject-style.js
blob: 532645a455f3be449c21089e8ac2d507fc9c6e9e (plain)
1
2
3
4
5
document.write("<style>#test1 { display: none; }</style>");

var s = document.createElement('style');
s.textContent = "#test2 { display: none; }";
document.body.appendChild(s);