| <!-- |
| Copyright 2020 The Chromium Authors |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. |
| --> |
| <!DOCTYPE html> |
| <html> |
| <body></body> |
| <script> |
| function second() { |
| const iframe = document.createElement("iframe"); |
| iframe.setAttribute("src", `https://devtools.oopif.test:${document.location.port}/test/e2e/resources/application/iframe.html`); |
| document.body.appendChild(iframe); |
| } |
| </script> |
| <script> |
| function first() { |
| second(); |
| } |
| |
| first(); |
| //# sourceURL=js-oopif.js |
| </script> |
| </html> |