Paul Irish
Paul Irish
lushnikov's protocol-viewer alternative has a sweet feature where you can see the references of a given type https://vanilla.aslushnikov.com/?Debugger.CallFrame  Super useful in figuring out what other methods use the same...
_Edit (sept 2015)_: This issue is the living documentation for the deopt & bailout reasons provided by Chrome DevTools and the V8 sampling profiler.  ## Should I care? A...
- workspaces. how do they work - WS & Sass - LiveEdit is a gateway drug into workspaces, but its also a complement when you're using them - its not...
Now that redirects are in place, the major pages in this docs repo all forward into developers.google.com/web/tools/* @kaycebasques can you put up a PR to remove the pages from this...
@Garbee do you have a ticket tracking the network stuff you're working on? Regardless I wanted to capture these items, so they go into the docs. ### What do the...
RUM is so hot right now and people are kind of unclear on what APIs are available for them in Chrome https://docs.google.com/a/google.com/presentation/d/17HjGp4pQlNh2WIwKiTcUpDLIuOdkUcRmALFuoytQsjU/edit#slide=id.g2d5e578af_023 covers it pretty well. Let's give the lay...
Followup from #93 and #13… - lets show an example from remysharp on how we can pass args to console.trace effectively - calling `console.timeline()` a few time works fine, it...
    - Details pane / summary. - gpu frames on top - Capture stacks checkbox (will capture stack traces for all operations it can. pretty much the...
https://developer.chrome.com/extensions/devtools_panels is a little hard to follow. I'll try to summarize here. Two existing devtools panels can be extended: sources & elements: ``` js chrome.devtools.panels.sources chrome.devtools.panels.elements ``` The three APIs...
This feature is kind of black magic (to me, at least). Let's try to demystify it a bit. ``` c++ void RenderWidgetCompositor::setShowScrollBottleneckRects(bool show) { cc::LayerTreeDebugState debug_state = layer_tree_host_->debug_state(); debug_state.show_touch_event_handler_rects =...