| Index: third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/helper.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/helper.js b/third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/helper.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c1aacd6870138b5bf388e739a291973d7d9da59d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/feature-policy/resources/helper.js
|
| @@ -0,0 +1,8 @@
|
| +function loadIframes(srcs) {
|
| + var iframes = document.getElementsByTagName('iframe');
|
| + for (var src of srcs) {
|
| + for (var iframe of iframes) {
|
| + loadFrame(iframe, src);
|
| + }
|
| + }
|
| +}
|
|
|