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
Steps to reproduce: Evaluate h('div', 'Test', { style: { display: 'none' } }).outerHTML
h('div', 'Test', { style: { display: 'none' } }).outerHTML
Expected: <div style="display: none">Test</div> (or something like that).
<div style="display: none">Test</div>
Got: <div>Test</div>
<div>Test</div>
Am I missing something?
The text was updated successfully, but these errors were encountered:
This is running in node, right? so I think this bug is in https://github.com/1N50MN14/html-element can you post an issue there?
Sorry, something went wrong.
Sure, thanks, but it looks like I'll have to try to make a PR for him, see 1N50MN14/html-element#31 (comment) :)
No branches or pull requests
Steps to reproduce: Evaluate
h('div', 'Test', { style: { display: 'none' } }).outerHTML
Expected:
<div style="display: none">Test</div>
(or something like that).Got:
<div>Test</div>
Am I missing something?
The text was updated successfully, but these errors were encountered: