- From: <bugzilla@jessica.w3.org>
- Date: Thu, 14 Oct 2010 15:06:56 +0000
- To: public-html-bugzilla@w3.org
http://www.w3.org/Bugs/Public/show_bug.cgi?id=10818 I18n Core WG <public-i18n-core@w3.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |public-i18n-core@w3.org --- Comment #6 from I18n Core WG <public-i18n-core@w3.org> 2010-10-14 15:06:55 UTC --- (In reply to comment #5) > Regarding the second issue in comment 4, you can do that today by just having > two nested elements, one outer one with the dir="" and title="" attributes, and > one inner one with the dir="" attribute and text. Given that it's already > possible, and that this is a rather rare case, My understanding is that, while it indeed is a rare case for people using ltr scripts, it is much more common for people using rtl scripts, because text in Arabic, Hebrew, Urdu, etc commonly mixes in Latin or other ltr text. Note that it only takes a comma (eg. in a list), period (eg. Inc.), parentheses (eg. an abbreviation), or other simple punctuation to make things turn out badly. It's not only for bidirectional text. I can think of several examples quite easily. For instance, suppose you want to put a title attribute on some text that I just found on one of the W3C Office pages like this (upper case = Arabic): ... <a href="http://..." title="Moroccan Internet Society (MISOC)">MOROCCAN INTERNET SOCIETY</a> ... You would currently see the following, where the [ ] indicates a tooltip: [(Moroccan Internet Society (MISOC] ...YTEICOS TENRETNI NACCOROM... Which of course looks badly broken. To make that look right you'd have to resort to kludge code that I think is time consuming, error prone, and so plainly a hack that it must feel a bit like a slap in the face to the many millions of people who use rtl scripts: ... <span title="Moroccan Internet Society (MISOC)" dir=ltr><a href="http://..." dir=rtl>MOROCCAN INTERNET SOCIETY</a></span> ... After a few cases of that you also get pretty fed up that HTML doesn't just do this cleanly. -- Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug.
Received on Thursday, 14 October 2010 15:06:58 UTC