<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#c4">Comment # 4</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:cgarcia&#64;igalia.com" title="Carlos Garcia Campos &lt;cgarcia&#64;igalia.com&gt;"> <span class="fn">Carlos Garcia Campos</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=143047#c3">comment #3</a>)
<span class="quote">&gt; (In reply to <a href="show_bug.cgi?id=143047#c2">comment #2</a>)
&gt; &gt; (In reply to <a href="show_bug.cgi?id=143047#c1">comment #1</a>)
&gt; &gt; &gt; So we fixed an early runtime error in the frontend soon after that:
&gt; &gt; &gt; <a href="http://trac.webkit.org/changeset/181905">http://trac.webkit.org/changeset/181905</a>
&gt; &gt; &gt; 
&gt; &gt; &gt; Can you see if this test still fails after that revision?
&gt; &gt; 
&gt; &gt; Yes, remote inspector is still broken. I see a lot of js errors in the
&gt; &gt; console, like:
&gt; 
&gt; It sounds like you're running into an early error. For instance:
&gt; 
&gt; &gt; TypeError: undefined is not an object (evaluating 'this.modifierKeys.altKey')
&gt; 
&gt; This sounds like:
&gt; 
&gt;     WebInspector._updateModifierKeys = function(event)
&gt;     {
&gt;         var didChange = this.modifierKeys.altKey !== event.altKey ||
&gt; this.modifierKeys.metaKey !== event.metaKey || this.modifierKeys.shiftKey
&gt; !== event.shiftKey;
&gt;         ...
&gt;     };
&gt; 
&gt; Somehow this code got called and either &quot;this&quot; or &quot;this.modifierKeys&quot; was
&gt; undefined. That shouldn't happen, modifierKeys is initialized in
&gt; WebInspector.contentLoaded.</span >

It's this.modifierKeys, I managed to fix this particular issue by moving the initialization of this.modifierKeys earlier in WebInspector.contentLoaded.

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

Yes, tried something similar but it didn't work.

<span class="quote">&gt; 
&gt; &gt; It seems to me that the remote inspector is trying to load the non-remote ui
&gt; &gt; or something like that.
&gt; 
&gt; - Are there earlier errors? The earliest error may give an indication as
&gt; what is going on!</span >

I think those were the first ones, but I'll try again.

<span class="quote">&gt; - Are ES6 classes supported in the browser showing the remote inspector?</span >

I used the MiniBrowser for both.

<span class="quote">&gt; - Maybe Symbol is not supported? Timothy Hatcher has a patch that
&gt; monkey-patches that in to a degree:
&gt; Adding a window.Symbol to InspectorFrontendHostStub.js
&gt; 
&gt; I suspect it is window.Symbol issues.</span >

I'll try, thanks.</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>