2015-09-14 Brian Burg <bburg@apple.com>
+ Web Inspector: tab bar stutters when moving mouse after closing tab
+ https://bugs.webkit.org/show_bug.cgi?id=149138
+
+ Reviewed by Joseph Pecoraro.
+
+ The tab bar lacked the 'static-layout' class between when the Promise microtask
+ ran and the beginning of the requestAnimationFrame. This caused a flash of
+ tabs that are way too wide.
+
+ Re-add the static-layout class immediately after measuring the 'after' tab size.
+ This code should probably just manually compute tab sizes since flexbox
+ layout is quite slow and our measurement code here forces layout several times.
+
+ * UserInterface/Views/TabBar.js:
+
+2015-09-14 Brian Burg <bburg@apple.com>
+
Web Inspector: backend command promises are not rejected when a protocol error occurs
https://bugs.webkit.org/show_bug.cgi?id=141403