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

Unified Diff: LayoutTests/inspector/sources/debugger/dom-breakpoints.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/dom-breakpoints.html
diff --git a/LayoutTests/inspector/sources/debugger/dom-breakpoints.html b/LayoutTests/inspector/sources/debugger/dom-breakpoints.html
deleted file mode 100644
index 40de3d5174624c8c5f9d4203adc44b1de4e53806..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/sources/debugger/dom-breakpoints.html
+++ /dev/null
@@ -1,315 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/elements-test.js"></script>
-<script src="../../../http/tests/inspector/debugger-test.js"></script>
-<script>
-
-function appendElement(parentId, childId)
-{
- var child = document.createElement("div");
- child.id = childId;
- document.getElementById(parentId).appendChild(child);
-}
-
-function modifyAttribute(elementId, name, value)
-{
- var element = document.getElementById(elementId);
- element.setAttribute(name, value);
-}
-
-function modifyAttrNode(elementId, name, value)
-{
- var element = document.getElementById(elementId);
- element.attributes[name].value = value;
-}
-
-function setAttrNode(elementId, name, value)
-{
- var element = document.getElementById(elementId);
- var attr = document.createAttribute(name);
- attr.value = value;
- element.attributes.setNamedItem(attr);
-}
-
-function modifyStyleAttribute(elementId, name, value)
-{
- var element = document.getElementById(elementId);
- element.style.setProperty(name, value);
-}
-
-function removeElement(elementId)
-{
- var element = document.getElementById(elementId);
- element.parentNode.removeChild(element);
-}
-
-function setInnerHTML(elementId, html)
-{
- var element = document.getElementById(elementId);
- element.innerHTML = html;
-}
-
-function breakDebugger()
-{
- debugger;
-}
-
-function authorShadowRoot()
-{
- return document.getElementById("hostElement").shadowRoot;
-}
-
-function authorShadowElement(id)
-{
- return authorShadowRoot().getElementById(id);
-}
-
-function appendElementToAuthorShadowTree(parentId, childId)
-{
- var child = document.createElement("div");
- child.id = childId;
- authorShadowElement(parentId).appendChild(child);
-}
-
-function appendElementToOpenShadowRoot(childId)
-{
- var child = document.createElement("div");
- child.id = childId;
- authorShadowRoot().appendChild(child);
-}
-
-function test()
-{
-
- var pane = WebInspector.domBreakpointsSidebarPane;
- var rootElement;
- var outerElement;
- var authorShadowRoot;
- InspectorTest.runDebuggerTestSuite([
- function testInsertChild(next)
- {
- InspectorTest.addResult("Test that 'Subtree Modified' breakpoint is hit when appending a child.");
- InspectorTest.nodeWithId("rootElement", step2);
-
- function step2(node)
- {
- rootElement = node;
- pane._setBreakpoint(node, pane._breakpointTypes.SubtreeModified, true);
- InspectorTest.addResult("Set 'Subtree Modified' DOM breakpoint on rootElement.");
- InspectorTest.evaluateInPageWithTimeout("appendElement('rootElement', 'childElement')");
- InspectorTest.addResult("Append childElement to rootElement.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- }
- },
-
- function testInsertGrandchild(next)
- {
- InspectorTest.addResult("Test that 'Subtree Modified' breakpoint is hit when appending a grandchild.");
- InspectorTest.evaluateInPageWithTimeout("appendElement('childElement', 'grandchildElement')");
- InspectorTest.addResult("Append grandchildElement to childElement.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- },
-
- function testRemoveChild(next)
- {
- InspectorTest.addResult("Test that 'Subtree Modified' breakpoint is hit when removing a child.");
- InspectorTest.evaluateInPageWithTimeout("removeElement('grandchildElement')");
- InspectorTest.addResult("Remove grandchildElement.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- },
-
- function testInnerHTML(next)
- {
- InspectorTest.addResult("Test that 'Subtree Modified' breakpoint is hit exactly once when setting innerHTML.");
- InspectorTest.evaluateInPageWithTimeout("setInnerHTML('childElement', '<br><br>')");
- InspectorTest.addResult("Set childElement.innerHTML.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(step2);
-
- function step2()
- {
- InspectorTest.waitUntilPaused(step3);
- InspectorTest.evaluateInPageWithTimeout("breakDebugger()");
- InspectorTest.addResult("Call breakDebugger, expect it to show up in next stack trace.");
- }
-
- function step3(frames)
- {
- InspectorTest.captureStackTrace(frames);
- pane._removeBreakpoint(rootElement, pane._breakpointTypes.SubtreeModified);
- InspectorTest.resumeExecution(next);
- }
- },
-
- function testModifyAttribute(next)
- {
- InspectorTest.addResult("Test that 'Attribute Modified' breakpoint is hit when modifying attribute.");
- pane._setBreakpoint(rootElement, pane._breakpointTypes.AttributeModified, true);
- InspectorTest.addResult("Set 'Attribute Modified' DOM breakpoint on rootElement.");
- InspectorTest.evaluateInPageWithTimeout("modifyAttribute('rootElement', 'data-test', 'foo')");
- InspectorTest.addResult("Modify rootElement data-test attribute.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(step2);
-
- function step2(callFrames)
- {
- pane._removeBreakpoint(rootElement, pane._breakpointTypes.AttributeModified);
- next();
- }
- },
-
- function testModifyAttrNode(next)
- {
- InspectorTest.addResult("Test that 'Attribute Modified' breakpoint is hit when modifying Attr node.");
- pane._setBreakpoint(rootElement, pane._breakpointTypes.AttributeModified, true);
- InspectorTest.addResult("Set 'Attribute Modified' DOM breakpoint on rootElement.");
- InspectorTest.evaluateInPageWithTimeout("modifyAttrNode('rootElement', 'data-test', 'bar')");
- InspectorTest.addResult("Modify rootElement data-test attribute.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(step2);
-
- function step2(callFrames)
- {
- pane._removeBreakpoint(rootElement, pane._breakpointTypes.AttributeModified);
- next();
- }
- },
-
- function testSetAttrNode(next)
- {
- InspectorTest.addResult("Test that 'Attribute Modified' breakpoint is hit when adding a new Attr node.");
- pane._setBreakpoint(rootElement, pane._breakpointTypes.AttributeModified, true);
- InspectorTest.addResult("Set 'Attribute Modified' DOM breakpoint on rootElement.");
- InspectorTest.evaluateInPageWithTimeout("setAttrNode('rootElement', 'data-foo', 'bar')");
- InspectorTest.addResult("Modify rootElement data-foo attribute.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(step2);
-
- function step2(callFrames)
- {
- pane._removeBreakpoint(rootElement, pane._breakpointTypes.AttributeModified);
- next();
- }
- },
-
- function testModifyStyleAttribute(next)
- {
- InspectorTest.addResult("Test that 'Attribute Modified' breakpoint is hit when modifying style attribute.");
- pane._setBreakpoint(rootElement, pane._breakpointTypes.AttributeModified, true);
- InspectorTest.addResult("Set 'Attribute Modified' DOM breakpoint on rootElement.");
- InspectorTest.evaluateInPageWithTimeout("modifyStyleAttribute('rootElement', 'color', 'green')");
- InspectorTest.addResult("Modify rootElement style.color attribute.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(step2);
-
- function step2(callFrames)
- {
- pane._removeBreakpoint(rootElement, pane._breakpointTypes.AttributeModified);
- next();
- }
- },
-
- function testRemoveNode(next)
- {
- InspectorTest.addResult("Test that 'Node Removed' breakpoint is hit when removing a node.");
- InspectorTest.nodeWithId("elementToRemove", step2);
-
- function step2(node)
- {
- pane._setBreakpoint(node, pane._breakpointTypes.NodeRemoved, true);
- InspectorTest.addResult("Set 'Node Removed' DOM breakpoint on elementToRemove.");
- InspectorTest.evaluateInPageWithTimeout("removeElement('elementToRemove')");
- InspectorTest.addResult("Remove elementToRemove.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- }
- },
-
- function testReload(next)
- {
- InspectorTest.addResult("Test that DOM breakpoints are persisted between page reloads.");
- InspectorTest.nodeWithId("rootElement", step2);
-
- function step2(node)
- {
- pane._setBreakpoint(node, pane._breakpointTypes.SubtreeModified, true);
- pane._saveBreakpoints();
- InspectorTest.addResult("Set 'Subtree Modified' DOM breakpoint on rootElement.");
- InspectorTest.reloadPage(step3);
- }
-
- function step3()
- {
- InspectorTest.expandElementsTree(step4);
- }
-
- function step4()
- {
- InspectorTest.evaluateInPageWithTimeout("appendElement('rootElement', 'childElement')");
- InspectorTest.addResult("Append childElement to rootElement.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- }
- },
-
- function testInsertChildIntoAuthorShadowTree(next)
- {
- InspectorTest.shadowRootByHostId("hostElement", callback);
-
- function callback(node)
- {
- authorShadowRoot = node;
- InspectorTest.addResult("Test that 'Subtree Modified' breakpoint on author shadow root is hit when appending a child.");
- pane._setBreakpoint(authorShadowRoot, pane._breakpointTypes.SubtreeModified, true);
- InspectorTest.addResult("Set 'Subtree Modified' DOM breakpoint on author shadow root.");
- InspectorTest.evaluateInPageWithTimeout("appendElementToOpenShadowRoot('childElement')");
- InspectorTest.addResult("Append childElement to author shadow root.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- }
- },
-
- function testReloadWithShadowElementBreakpoint(next)
- {
- InspectorTest.nodeWithId("outerElement", step1);
-
- function step1(node)
- {
- outerElement = node;
-
- InspectorTest.addResult("Test that shadow DOM breakpoints are persisted between page reloads.");
- pane._setBreakpoint(outerElement, pane._breakpointTypes.SubtreeModified, true);
- pane._saveBreakpoints();
- InspectorTest.addResult("Set 'Subtree Modified' DOM breakpoint on outerElement.");
- InspectorTest.reloadPage(step2);
- }
-
- function step2()
- {
- InspectorTest.expandElementsTree(step3);
- }
-
- function step3()
- {
- InspectorTest.evaluateInPageWithTimeout("appendElementToAuthorShadowTree('outerElement', 'childElement')");
- InspectorTest.addResult("Append childElement to outerElement.");
- InspectorTest.waitUntilPausedAndDumpStackAndResume(next);
- }
- }
-
- ]);
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests DOM breakpoints. <a href="https://bugs.webkit.org/show_bug.cgi?id=42886">Bug 42886</a>
-</p>
-
-<div id="rootElement" style="color: red">
-<div id="elementToRemove"></div>
-</div>
-
-<div id="hostElement"></div>
-<script>
-var root = document.getElementById("hostElement").createShadowRoot();
-root.innerHTML = "<div id='outerElement' style='red'><input id='input'/></div>";
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698