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

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation.html

Issue 2143053004: Revert of [DevTools] Allow modifying instrumenting agents while iterating. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation.html b/third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation.html
deleted file mode 100644
index 47c38d79a8df981263ff21efd4f5e17592611d0b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<html>
-<head>
-<script type="text/javascript" src="../../http/tests/inspector-protocol/inspector-protocol-test.js"></script>
-<script>
-
-function modifyHTML()
-{
- document.getElementById("divUnderTest").innerHTML = "innerHTML";
-}
-
-function test()
-{
- InspectorTest.sendCommand("Debugger.enable", {});
- InspectorTest.sendCommand("DOM.enable", {});
- InspectorTest.sendCommand("DOMDebugger.enable", {});
- InspectorTest.sendCommand("DOMDebugger.setInstrumentationBreakpoint", {"eventName":"setInnerHTML"});
- InspectorTest.sendCommand("Runtime.evaluate", { "expression": "modifyHTML()" });
- InspectorTest.eventHandler["Debugger.paused"] = handleDebuggerPausedOne;
-
- function handleDebuggerPausedOne(messageObject)
- {
- var callFrame = messageObject.params.callFrames[0];
- InspectorTest.log("Paused on the innerHTML assignment: " + callFrame.functionName + "@:" + callFrame.location.lineNumber);
- InspectorTest.completeTest();
- }
-}
-</script>
-</head>
-<body onLoad="runTest();">
-<div id="divUnderTest"></div>
-Tests that we don't crash when detaching on pause from instrumentation call.
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector-protocol/debugger/detach-when-paused-in-instrumentation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698