<html>
    <head>
      <base href="https://bugzilla.gnome.org/" />
    </head>
    <body><span class="vcard"><a href="page.cgi?id=describeuser.html&login=tiagomatos%40gmail.com" title="Rui Matos <tiagomatos@gmail.com>"> <span class="fn">Rui Matos</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - wayland: Switching between fullscreen and unfullscreen using F11 in google-chrome causes gnome-shell to hang"
   href="https://bugzilla.gnome.org/show_bug.cgi?id=762618">bug 762618</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
                
           </td>
           <td>tiagomatos@gmail.com
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - wayland: Switching between fullscreen and unfullscreen using F11 in google-chrome causes gnome-shell to hang"
   href="https://bugzilla.gnome.org/show_bug.cgi?id=762618#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - wayland: Switching between fullscreen and unfullscreen using F11 in google-chrome causes gnome-shell to hang"
   href="https://bugzilla.gnome.org/show_bug.cgi?id=762618">bug 762618</a>
              from <span class="vcard"><a href="page.cgi?id=describeuser.html&login=tiagomatos%40gmail.com" title="Rui Matos <tiagomatos@gmail.com>"> <span class="fn">Rui Matos</span></a>
</span></b>
        <pre>Olivier, can you add the following printfs to clutter and re-post that log?

diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c
index 2c67ca3..5f55190 100644
--- a/clutter/clutter-stage.c
+++ b/clutter/clutter-stage.c
@@ -1034,6 +1034,8 @@ _clutter_stage_process_queued_events (ClutterStage
*stage)
       clutter_event_free (event);
     }

+  fprintf (stderr, "clutter stage events processed\n");
+
   g_list_free (events);

   g_object_unref (stage);
diff --git a/clutter/evdev/clutter-device-manager-evdev.c
b/clutter/evdev/clutter-device-manager-evdev.c
index df9cd19..057aa38 100644
--- a/clutter/evdev/clutter-device-manager-evdev.c
+++ b/clutter/evdev/clutter-device-manager-evdev.c
@@ -295,6 +295,7 @@ static void
 queue_event (ClutterEvent *event)
 {
   _clutter_event_push (event, FALSE);
+  fprintf (stderr, "pushed libinput event\n");
 }

 static void
@@ -916,6 +917,7 @@ clutter_event_dispatch (GSource     *g_source,

       /* forward the event into clutter for emission etc. */
       _clutter_stage_queue_event (event->any.stage, event, FALSE);
+      fprintf (stderr, "_clutter_stage_queue_event()\n");

       /* update the device states *after* the event */
       event_state = seat->button_state |</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>