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

IE / Edge are weakly supported #61

Closed
WebReflection opened this issue Aug 23, 2017 · 2 comments
Closed

IE / Edge are weakly supported #61

WebReflection opened this issue Aug 23, 2017 · 2 comments

Comments

@WebReflection
Copy link

Try the following on any IE / Edge browser.

render(
  html`<i data-i="${'a'}" class="${'b'}"></i>`,
  document.body
);
document.body.appendChild(
  document.createTextNode(
    document.body.firstElementChild.outerHTML
  )
);

Expected layout

<i data-i="a" class="b"></i>

Current layout

<i class="a" data-i="b"></i>

screenshot from 2017-08-23 15-05-18

FYI this is fixed in hyperHTML since v0 and Firefox used to have the same issue.

@WebReflection
Copy link
Author

is this still the case?

@jridgewell
Copy link
Contributor

This was fixed by #132.

aomarks added a commit that referenced this issue Nov 2, 2020
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

2 participants