Closed
Bug 505136
Opened 17 years ago
Closed 17 years ago
some "font-family" CSS rules are applied incorrectly via javascript
Categories
(Firefox :: Tabbed Browser, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 193404
People
(Reporter: zero794, Unassigned)
Details
User-Agent: Mozilla/4.0 (compatible)
Build Identifier: 2.0.0.1
Please don't blame me for the FF version used,
got too old pc (Win98).
<p>
Yes, this is a correct "up arrow" symbol:
<font face="Wingdings">é</font>
<br>
<div id=Problem>But this looks like a bug in FF: </div>
<script>
var X = document.createElement("font");
// while "Arial" or "Comic Sans MS" does change the font!
X.style.fontFamily = "Wingdings";
X.innerText = // IE
X.textContent = // Moz
String.fromCharCode(233);
Problem.appendChild(X);
</script>
Reproducible: Always
Steps to Reproduce:
1. try it in FF
2. try it in IE
Updated•17 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 17 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•