Paul Irish

Results 225 issues of 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 ![image](https://user-images.githubusercontent.com/39191/153316603-ba75a35c-1fe4-4d18-8421-2e3d04e1bb3e.png) 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. ![image](https://f.cloud.github.com/assets/39191/1937117/fb082f44-7f1a-11e3-9e16-ec69c6fce0ef.png) ## 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...

![image](https://f.cloud.github.com/assets/39191/1729735/20ab5548-62c7-11e3-830e-5cccc654550f.png) ![image](https://f.cloud.github.com/assets/39191/1729742/42758630-62c7-11e3-9e0c-2c972e760a26.png) ![image](https://f.cloud.github.com/assets/39191/1735584/68de87c8-6357-11e3-909d-7bfde4a2d0b1.png) ![image](https://f.cloud.github.com/assets/39191/1735615/0582a334-6358-11e3-8771-dfde1d2dd483.png) - Details pane / summary. - gpu frames on top - Capture stacks checkbox (will capture stack traces for all operations it can. pretty much the...

Docs
High Priority

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 =...