Changeset 116691 in webkit


Ignore:
Timestamp:
May 10, 2012 2:53:35 PM (12 years ago)
Author:
abarth@webkit.org
Message:

ASSERT in BidiResolver<Iterator, Run>::commitExplicitEmbedding makes running debug builds annoying
https://bugs.webkit.org/show_bug.cgi?id=86140

Reviewed by Eric Seidel.

The correct fix here is to resolve
https://bugs.webkit.org/show_bug.cgi?id=76574, but in the mean time,
this ASSERT is annoying.

  • platform/text/BidiResolver.h:

(WebCore::::commitExplicitEmbedding):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116690 r116691  
     12012-05-10  Adam Barth  <abarth@webkit.org>
     2
     3        ASSERT in BidiResolver<Iterator, Run>::commitExplicitEmbedding makes running debug builds annoying
     4        https://bugs.webkit.org/show_bug.cgi?id=86140
     5
     6        Reviewed by Eric Seidel.
     7
     8        The correct fix here is to resolve
     9        https://bugs.webkit.org/show_bug.cgi?id=76574, but in the mean time,
     10        this ASSERT is annoying.
     11
     12        * platform/text/BidiResolver.h:
     13        (WebCore::::commitExplicitEmbedding):
     14
    1152012-05-10  Mark Pilgrim  <pilgrim@chromium.org>
    216
  • trunk/Source/WebCore/platform/text/BidiResolver.h

    r116198 r116691  
    404404{
    405405    // This gets called from bidiFirst when setting up our start position.
    406     ASSERT(!inIsolate() || m_currentExplicitEmbeddingSequence.isEmpty());
     406    // FIXME: Re-enable this assert once https://bugs.webkit.org/show_bug.cgi?id=76574 is fixed.
     407    // ASSERT(!inIsolate() || m_currentExplicitEmbeddingSequence.isEmpty());
    407408
    408409    using namespace WTF::Unicode;
Note: See TracChangeset for help on using the changeset viewer.