Bug 78594 - unicode-bidi:plaintext should make all-neutral paragraphs LTR
Summary: unicode-bidi:plaintext should make all-neutral paragraphs LTR
Status: RESOLVED CONFIGURATION CHANGED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Text (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks: 50910
  Show dependency treegraph
 
Reported: 2012-02-14 02:50 PST by Aharon (Vladimir) Lanin
Modified: 2022-10-04 10:52 PDT (History)
9 users (show)

See Also:


Attachments
test case being submitted to W3C's HTML5 test suite (2.46 KB, text/html)
2012-02-14 02:50 PST, Aharon (Vladimir) Lanin
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Aharon (Vladimir) Lanin 2012-02-14 02:50:43 PST
Created attachment 126948 [details]
test case being submitted to W3C's HTML5 test suite

Currently, in a unicode-bidi:-webkit-plaintext element, paragraphs that contain no strongly left-to-right (bidi class L) or right-to-left (bidi class R and AL) characters default to the element's computed direction style. This is bad because it does not conform to http://www.w3.org/TR/css3-writing-modes/, which states that "the base directionality of each bidi paragraph for which the element forms the containing block is determined not by the element's computed ‘direction’ as usual, but by following the heuristic in rules P2 and P3 of the Unicode bidirectional algorithm". In turn, http://unicode.org/reports/tr9/#P3 states that  "if a character is found in P2 and it is of type AL or R, then set the paragraph embedding level to one; otherwise, set it to zero." Paragraph level 0 is LTR.

Gecko's implementation of unicode-bidi:plaintext suffers from the exact same problem, but they are about to fix it. See https://bugzilla.mozilla.org/show_bug.cgi?id=726420.

Please note that the exact definition of unicode-bidi:plaintext is relevant even when the element has dir=auto (which assigns unicode-bidi:plaintext by default for <pre> and <textarea>, and is probably more likely to be used than unicode-bidi:plaintext directly), even though part of the definition of dir=auto is that the element is assigned a CSS direction using the first-strong algorithm. The exact definition of still makes a difference in a case like this:

<pre dir=auto>
א!
-->
</pre>

This will result in the second line being displayed <-- if unicode-bidi:plaintext for all-neutral paragraphs depends on the computed direction of the element, but it being displayed --> if all-neutral paragraphs are always LTR. The test case I am attaching is elaboration of this example.

Despite all of the above, I think that there is room for "fudging" a little and making the direction of a completely empty (not just all-neutral) paragraph match the direction of the preceding paragraph, and if there is none, then the computed direction. The purpose of this would be just to set the alignment (when text-align is start or end) such that when typing a sequence of RTL paragraphs in a unicode-bidi:plaintext textarea, one will not initially start off with the caret on the left for each new paragraph. This little tweak will have no affect whatsoever on the display of text outside of a textarea, where the direction of an empty paragraph is a moot point. But this is just icing; the basic point of this bug is that all-neutral paragraphs should default to LTR.
Comment 1 Aharon (Vladimir) Lanin 2012-02-23 00:54:11 PST
Please note that the corresponding bug has now been fixed in Mozilla, see https://bugzilla.mozilla.org/show_bug.cgi?id=726420
Comment 2 Igor Trindade Oliveira 2014-03-06 05:53:43 PST
Related patch in blink: https://src.chromium.org/viewvc/blink?revision=156664&view=revision
Comment 3 Ahmad Saleem 2022-05-30 14:56:47 PDT
This issue is still reproducible in Safari 15.5 on macOS 12.4. All other browsers Chrome and Firefox matches each other. Thanks!
Comment 4 Radar WebKit Bug Importer 2022-05-31 10:22:34 PDT
<rdar://problem/94161105>
Comment 5 Ahmad Saleem 2022-09-25 10:40:40 PDT
I am not able to reproduce this now in Safari 16 and Safari Technology Preview 154 using attached testcase and both look same.

Is it something fixed since Safari 15.5? Can someone confirm besides myself? Thanks!