We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Fix the test co19/LibTest/html/IFrameElement/IFrameElement.created_A01_t01
To create an IFrame custom element do the following and the test will work.
class MyIFrameElement extends IFrameElement { factory MyIFrameElement() { return new Element.tag('my-iframe'); } 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); }
The text was updated successfully, but these errors were encountered:
Fix for issue #117. The way of element creation fixed
5d3034e
329ae33
Fixed in both master and strong-mode branches
Sorry, something went wrong.
sgrekhov
No branches or pull requests
Fix the test co19/LibTest/html/IFrameElement/IFrameElement.created_A01_t01
To create an IFrame custom element do the following and the test will work.
The text was updated successfully, but these errors were encountered: