(iframe, type, object, targetOrigin, opt_is3P)
| 351 | * @param {boolean=} opt_is3P set to true if the iframe is 3p. |
| 352 | */ |
| 353 | export function postMessage(iframe, type, object, targetOrigin, opt_is3P) { |
| 354 | postMessageToWindows( |
| 355 | iframe, |
| 356 | [{win: iframe.contentWindow, origin: targetOrigin}], |
| 357 | type, |
| 358 | object, |
| 359 | opt_is3P |
| 360 | ); |
| 361 | } |
| 362 | |
| 363 | /** |
| 364 | * Posts an identical message to multiple target windows with the same |
no test coverage detected