]> git.pld-linux.org Git - packages/chromium-browser.git/blob - harfbuzz-0.13.patch
harfbuzz 0.13 fix from WebKit for Oops pages
[packages/chromium-browser.git] / harfbuzz-0.13.patch
1 http://crbug.com/223500
2 http://trac.webkit.org/changeset/143337/trunk/Source/WebCore/platform/graphics/harfbuzz/HarfBuzzShaper.cpp
3
4 Index: trunk/Source/WebCore/platform/graphics/harfbuzz/HarfBuzzShaper.cpp
5 ===================================================================
6 --- trunk/Source/WebCore/platform/graphics/harfbuzz/HarfBuzzShaper.cpp  (revision 142928)
7 +++ trunk/Source/WebCore/platform/graphics/harfbuzz/HarfBuzzShaper.cpp  (revision 143337)
8 @@ -330,4 +330,7 @@
9          if (shouldSetDirection)
10              hb_buffer_set_direction(harfBuzzBuffer.get(), currentRun->rtl() ? HB_DIRECTION_RTL : HB_DIRECTION_LTR);
11 +        else
12 +            // Leaving direction to HarfBuzz to guess is *really* bad, but will do for now.
13 +            hb_buffer_guess_segment_properties(harfBuzzBuffer.get());
14  
15          // Add a space as pre-context to the buffer. This prevents showing dotted-circle
This page took 0.106986 seconds and 3 git commands to generate.