Changes between Version 10 and Version 11 of WebInspectorDebugging
- Timestamp:
- Oct 23, 2019, 11:55:11 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspectorDebugging
v10 v11 81 81 == Disabling Minification and Concatenation 82 82 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: 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: 84 85 === On Mac 86 87 Go to the file: 84 88 85 89 {{{ … … 94 98 95 99 and run your test again. 100 101 === On Linux GTK 102 103 Add `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 {{{ 106 build-webkit --gtk --cmakeargs="-DCOMBINE_INSPECTOR_RESOURCES=NO -DCOMBINE_TEST_RESOURCES=NO" 107 }}} 108 109 and run your test again.