Renames are because another location also defined that variable. Unused definitions are eliminated. The .eslintrc.js file makes eslint expect XPCShell global variables. MozReview-Commit-ID: Fafm5o45bme
10 lines
264 B
HTML
10 lines
264 B
HTML
<html>
|
|
<body>
|
|
<script>
|
|
style = document.createElement("style"); // eslint-disable-line no-undef
|
|
document.documentElement.appendChild(style); // eslint-disable-line no-undef
|
|
style.textContent = "tz\uDAB2 "; // eslint-disable-line no-undef
|
|
</script>
|
|
</body>
|
|
</html>
|