Changes between Version 6 and Version 7 of WebInspectorDebugging
- Timestamp:
- May 17, 2016, 11:00:49 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebInspectorDebugging
v6 v7 67 67 However, both will be interleaved if you enable output to the system console as above. 68 68 69 = Tips for Debugging Tests 70 71 == Force Synchronous TestHarness Output 72 73 Setting `InspectorTest.forceDebugLogging = true` will force all test output to be emitted via window.alert, which in a LayoutTest will add a message to test output without modifying the test page. 74 This is useful if you suspect problems in the test harness itself, or if the test crashes before writing buffered output into the test page (which is usually scraped to produce the test output). 75 76 69 77 == Logging to System Console/stderr While Running Tests 70 78