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

Unified Diff: LayoutTests/inspector/sources/debugger/debugger-breakpoints-not-activated-on-reload.html

Issue 1153923005: DevTools: shard inspector/debugger tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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
Index: LayoutTests/inspector/sources/debugger/debugger-breakpoints-not-activated-on-reload.html
diff --git a/LayoutTests/inspector/sources/debugger/debugger-breakpoints-not-activated-on-reload.html b/LayoutTests/inspector/sources/debugger/debugger-breakpoints-not-activated-on-reload.html
deleted file mode 100644
index 7abbcdb4c5516f0b2faecf64367d62d828471724..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/sources/debugger/debugger-breakpoints-not-activated-on-reload.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-<script>
-
-function testFunction()
-{
- return 0;
-}
-
-var test = function()
-{
- var testName = InspectorTest.resourceTreeModel.inspectedPageURL();
- testName = testName.substring(testName.lastIndexOf('/') + 1);
-
- InspectorTest.startDebuggerTest(step1);
-
- function step1()
- {
- InspectorTest.showScriptSource(testName, step2);
- }
-
- function step2(sourceFrame)
- {
- InspectorTest.addResult("Main resource was shown.");
- InspectorTest.setBreakpoint(sourceFrame, 8, "", true);
- WebInspector.panels.sources._toggleBreakpointsButton.element.click();
- InspectorTest.reloadPage(step3);
- }
-
- function step3()
- {
- InspectorTest.addResult("Main resource was shown.");
- if (!WebInspector.breakpointManager.breakpointsActive())
- InspectorTest.addResult("Breakpoints are deactivated.");
- else
- InspectorTest.addResult("Error: breakpoints are activated.");
- InspectorTest.completeDebuggerTest();
- }
-};
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that breakpoints are not activated on page reload.<a href="https://bugs.webkit.org/show_bug.cgi?id=41461">Bug 41461</a>
-</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698