Changes between Version 10 and Version 11 of WebInspectorDebugging


Ignore:
Timestamp:
Oct 23, 2019 11:55:11 AM (4 years ago)
Author:
yurys@chromium.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebInspectorDebugging

    v10 v11  
    8181== Disabling Minification and Concatenation
    8282
    83 By default, all Inspector resources are combined in a single file to minimize the time spent loading many small local files through WebKit's loading infrastructure. Unfortunately, this can make stack traces in test output hard to read. To disable combining of test resources (on Mac), go to the file:
     83By default, all Inspector resources are combined in a single file to minimize the time spent loading many small local files through WebKit's loading infrastructure. Unfortunately, this can make stack traces in test output hard to read. To disable combining of test resources:
     84
     85=== On Mac
     86
     87Go to the file:
    8488
    8589{{{
     
    9498
    9599and run your test again.
     100
     101=== On Linux GTK
     102
     103Add `COMBINE_TEST_RESOURCES=NO` to `--cmakeargs`. In Debug build inspector resources are not combined by default, if you want to run Release binary but disable combining of inspector UI resources add `COMBINE_INSPECTOR_RESOURCES=NO`. Build WebKit:
     104
     105{{{
     106build-webkit --gtk --cmakeargs="-DCOMBINE_INSPECTOR_RESOURCES=NO -DCOMBINE_TEST_RESOURCES=NO"
     107}}}
     108
     109and run your test again.