<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - REGRESSION(r181844): [GTK] Test /webkit2/WebKitWebInspectorServer/test-open-debugging-session fails after r181844"
   href="https://bugs.webkit.org/show_bug.cgi?id=143047#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - REGRESSION(r181844): [GTK] Test /webkit2/WebKitWebInspectorServer/test-open-debugging-session fails after r181844"
   href="https://bugs.webkit.org/show_bug.cgi?id=143047">bug 143047</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=143047#c2">comment #2</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=143047#c1">comment #1</a>)
&gt; &gt; So we fixed an early runtime error in the frontend soon after that:
&gt; &gt; <a href="http://trac.webkit.org/changeset/181905">http://trac.webkit.org/changeset/181905</a>
&gt; &gt; 
&gt; &gt; Can you see if this test still fails after that revision?
&gt; 
&gt; Yes, remote inspector is still broken. I see a lot of js errors in the
&gt; console, like:</span >

It sounds like you're running into an early error. For instance:

<span class="quote">&gt; TypeError: undefined is not an object (evaluating 'this.modifierKeys.altKey')</span >

This sounds like:

    WebInspector._updateModifierKeys = function(event)
    {
        var didChange = this.modifierKeys.altKey !== event.altKey || this.modifierKeys.metaKey !== event.metaKey || this.modifierKeys.shiftKey !== event.shiftKey;
        ...
    };

Somehow this code got called and either &quot;this&quot; or &quot;this.modifierKeys&quot; was undefined. That shouldn't happen, modifierKeys is initialized in WebInspector.contentLoaded.



<span class="quote">&gt; TypeError: undefined is not an object (evaluating
&gt; 'WebInspector.Resizer.RuleOrientation.Vertical')</span >

This should be defined via Resizer.js.


<span class="quote">&gt; It seems to me that the remote inspector is trying to load the non-remote ui
&gt; or something like that.</span >

- Are there earlier errors? The earliest error may give an indication as what is going on!
- Are ES6 classes supported in the browser showing the remote inspector?
- Maybe Symbol is not supported? Timothy Hatcher has a patch that monkey-patches that in to a degree:
Adding a window.Symbol to InspectorFrontendHostStub.js

I suspect it is window.Symbol issues.</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>