| Index: third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/resources/inject-style.js
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/resources/inject-style.js b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/resources/inject-style.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..532645a455f3be449c21089e8ac2d507fc9c6e9e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/content-security-policy/blink-contrib/resources/inject-style.js
|
| @@ -0,0 +1,5 @@
|
| +document.write("<style>#test1 { display: none; }</style>");
|
| +
|
| +var s = document.createElement('style');
|
| +s.textContent = "#test2 { display: none; }";
|
| +document.body.appendChild(s);
|
|
|