Commit e26a12e3 authored by caseq@chromium.org's avatar caseq@chromium.org

2011-03-15 Andrey Kosyakov <caseq@chromium.org>

        Unreviewed. Swap two calls to setMonitoringXHREnabled to get rid of side effects on other tests.

        * inspector/protocol/console-agent-expected.txt:
        * inspector/protocol/console-agent.html:


git-svn-id: svn://svn.chromium.org/blink/trunk@81131 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent ec17f345
2011-03-15 Andrey Kosyakov <caseq@chromium.org>
Unreviewed. Swap two calls to setMonitoringXHREnabled to get rid of side effects on other tests.
* inspector/protocol/console-agent-expected.txt:
* inspector/protocol/console-agent.html:
2011-03-15 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
......@@ -132,7 +132,7 @@ response:
}
-----------------------------------------------------------
ConsoleAgent.setMonitoringXHREnabled(false)
ConsoleAgent.setMonitoringXHREnabled(true)
request:
{
......@@ -140,7 +140,7 @@ request:
domain : "Console"
command : "setMonitoringXHREnabled"
arguments : {
enabled : false
enabled : true
}
}
......@@ -150,7 +150,7 @@ response:
}
-----------------------------------------------------------
ConsoleAgent.setMonitoringXHREnabled(true)
ConsoleAgent.setMonitoringXHREnabled(false)
request:
{
......@@ -158,7 +158,7 @@ request:
domain : "Console"
command : "setMonitoringXHREnabled"
arguments : {
enabled : true
enabled : false
}
}
......
......@@ -11,8 +11,8 @@ function test()
["ConsoleAgent", "setConsoleMessagesEnabled", true],
["RuntimeAgent", "evaluate", "console.info('test'); console.info('test')", "test-group", false],
["ConsoleAgent", "clearConsoleMessages"],
["ConsoleAgent", "setMonitoringXHREnabled", false],
["ConsoleAgent", "setMonitoringXHREnabled", true],
["ConsoleAgent", "setMonitoringXHREnabled", false],
["ConsoleAgent", "addInspectedNode", 1]
];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment