Title: [243155] trunk/LayoutTests
Revision
243155
Author
[email protected]
Date
2019-03-19 11:41:37 -0700 (Tue, 19 Mar 2019)

Log Message

Unreviewed, fix test failures after r243119.

* inspector/timeline/line-column.html:
* inspector/timeline/setInstruments-programmatic-capture.html:
Make sure to call `enable` for any ancillary agents.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (243154 => 243155)


--- trunk/LayoutTests/ChangeLog	2019-03-19 18:38:59 UTC (rev 243154)
+++ trunk/LayoutTests/ChangeLog	2019-03-19 18:41:37 UTC (rev 243155)
@@ -1,3 +1,11 @@
+2019-03-19  Devin Rousso  <[email protected]>
+
+        Unreviewed, fix test failures after r243119.
+
+        * inspector/timeline/line-column.html:
+        * inspector/timeline/setInstruments-programmatic-capture.html:
+        Make sure to call `enable` for any ancillary agents.
+
 2019-03-19  Alicia Boya GarcĂ­a  <[email protected]>
 
         [MSE] Use tolerance in eraseBeginTime

Modified: trunk/LayoutTests/inspector/timeline/line-column.html (243154 => 243155)


--- trunk/LayoutTests/inspector/timeline/line-column.html	2019-03-19 18:38:59 UTC (rev 243154)
+++ trunk/LayoutTests/inspector/timeline/line-column.html	2019-03-19 18:41:37 UTC (rev 243155)
@@ -36,6 +36,8 @@
 function test() {
     ProtocolTest.debug();
 
+    InspectorProtocol.sendCommand("Page.enable");
+
     let suite = ProtocolTest.createAsyncSuite("Timeline.LineColumn");
 
     function replacer(key, value) {

Modified: trunk/LayoutTests/inspector/timeline/setInstruments-programmatic-capture.html (243154 => 243155)


--- trunk/LayoutTests/inspector/timeline/setInstruments-programmatic-capture.html	2019-03-19 18:38:59 UTC (rev 243154)
+++ trunk/LayoutTests/inspector/timeline/setInstruments-programmatic-capture.html	2019-03-19 18:41:37 UTC (rev 243155)
@@ -16,6 +16,8 @@
     let heapExpected = false;
     let programmaticCaptureStopped = null;
 
+    InspectorProtocol.sendCommand("Heap.enable");
+
     InspectorProtocol.eventHandler["Timeline.programmaticCaptureStarted"] = () => {
         ProtocolTest.pass("Timeline.programmaticCaptureStarted");
     };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to