Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dartium: Objects in IFrames get wrapped, even if accessed through JSInterop #24568

Closed
alan-knight opened this issue Oct 12, 2015 · 2 comments
Closed
Assignees

Comments

@alan-knight
Copy link
Contributor

e.g. LibTest/html/IFrameElement/IFrameElement.created_A01_t01

@terrylucas
Copy link
Contributor

terrylucas commented Jul 6, 2017

class MyIFrameElement extends IFrameElement {
MyIFrameElement.created() : super.created();

void testit() {
print("In testit 222");
}
}

iframe_test() {
var ife;
var tag = 'my-iframe';
document.registerElement(tag, MyIFrameElement, extendsTag: 'iframe');

ife = document.createElement('iframe', 'my-iframe');
document.body.append(ife);

ife.testit();
print(ife);
}

@terrylucas
Copy link
Contributor

See co19 issue dart-lang/co19#117 the test needs to change.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants