Opera combining acute bug
by TiGR
HTML
<small>Below lines should be displayed as ó, and other browsers do display it well.
At least one of the affected fonts should be installed in system in order to reproduce this bug.<br />
Select another font:
<input type="text" id="fontFamily" onkeyup="changeFont(this.value)" size="15" />
<input type="button" value="Trebuchet MS" />
<input type="button" value="Ubuntu" />
<input type="button" value="Georgia" />
</small>
<br /><br />
ó<br />τῆςó
CSS
body { font-size: 24pt; }
input { font-size: 18pt; }
JavaScript
function changeFont(fontFamily) {
document.body.style.fontFamily=fontFamily;
window.status=document.body.style.fontFamily;
}
function switchFont(fontFamily) {
fontFamily = typeof fontFamily == "string" ? fontFamily : this.value;
document.getElementById('fontFamily').value = fontFamily;
changeFont(fontFamily);
}
window.onload = function() {
var buttons=document.querySelectorAll("input[type=button]");
for (id in buttons) {
buttons[id].onclick = switchFont;
}
switchFont("Trebuchet MS");
}