<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Web Inspector: Hangs when logging huge JSON object"
   href="https://bugs.webkit.org/show_bug.cgi?id=153101#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Web Inspector: Hangs when logging huge JSON object"
   href="https://bugs.webkit.org/show_bug.cgi?id=153101">bug 153101</a>
              from <span class="vcard"><a class="email" href="mailto:joepeck&#64;webkit.org" title="Joseph Pecoraro &lt;joepeck&#64;webkit.org&gt;"> <span class="fn">Joseph Pecoraro</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=153101#c3">comment #3</a>)
<span class="quote">&gt; Saam, could you post a JSON string that causes the hang?
&gt; I can take a look at what's going on there.</span >

Hmm, I tried just a large, multiline JSON string and saw a lot of time spent in Layout, but not Regex matching =(:

    &lt;script&gt;
    var arr = [];
    for (var i = 0; i &lt; 1e5; ++i)
        arr.push({something: i});
    console.log(JSON.stringify(arr, null, 2));
    &lt;/script&gt;

So, I'm not quite sure. Maybe the output itself has to start matching a particular format.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>