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
Given a setup like
const i = document.createElement('iframe'); scrollBy(0, 100); i.contentWindow.scrollBy(0, 100);
The result should be (omitting imports)
const i = Reflect_apply(Document_createElement, Window_document_get(), ['iframe']); Window_scrollBy(0, 100); Reflect_apply(Window_scrollBy, Reflect_apply(HTMLIFrameElement_contentWindow_get, i), [0, 100]);
This kind of test is blocked on #29 and possible #35.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a setup like
The result should be (omitting imports)
This kind of test is blocked on #29 and possible #35.
The text was updated successfully, but these errors were encountered: