Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/debugger/debugger-setScriptBlackboxed.html

Issue 1902993002: [DevTools] Introduce provisional blackboxing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script type="text/javascript" src="../../http/tests/inspector-protocol/inspecto r-protocol-test.js"></script>
4 <script>
5 function test()
6 {
7 InspectorTest.sendCommand("Debugger.enable", {});
8
9 InspectorTest.sendCommand("Debugger.setScriptBlackboxed", { patterns: [ "pat tern1", "pattern2", "foo([" ] }, dumpAnswer);
10
11 function dumpAnswer(message)
12 {
13 InspectorTest.logObject(message);
14 InspectorTest.completeTest();
15 }
16 }
17 </script>
18 </head>
19 <body onLoad="runTest();"></body>
dgozman 2016/04/20 02:06:39 Remove this test.
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698