Skip to content

Commit

Permalink
Fix test-iframe-createIframeWithMessageStub failures on older browsers (
Browse files Browse the repository at this point in the history
  • Loading branch information
aghassemi authored and Vanessa Pasque committed Dec 22, 2016
1 parent d1c934e commit ae6e564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/served/iframe-stub.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

// Echo back a message received from parent window with a marker field
// 'testStubEcho'.
window.addEventListener('message', event => {
window.addEventListener('message', function(event) {
if (event.source == window.parent && !event.data.testStubEcho) {
const data = {
testStubEcho: true,
Expand Down

0 comments on commit ae6e564

Please sign in to comment.