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

Unified Diff: LayoutTests/inspector/sources/debugger/dom-breakpoints-expected.txt

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-expected.txt
diff --git a/LayoutTests/inspector/sources/debugger/dom-breakpoints-expected.txt b/LayoutTests/inspector/sources/debugger/dom-breakpoints-expected.txt
deleted file mode 100644
index 14f0b02f168d3ce9f864756bf536ee755839a28a..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/sources/debugger/dom-breakpoints-expected.txt
+++ /dev/null
@@ -1,140 +0,0 @@
-Tests DOM breakpoints. Bug 42886
-
-
-Running: testInsertChild
-Test that 'Subtree Modified' breakpoint is hit when appending a child.
-Set 'Subtree Modified' DOM breakpoint on rootElement.
-Append childElement to rootElement.
-Script execution paused.
-Call stack:
- 0) appendElement (dom-breakpoints.html:12)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new child was added to that node.
-Script execution resumed.
-
-Running: testInsertGrandchild
-Test that 'Subtree Modified' breakpoint is hit when appending a grandchild.
-Append grandchildElement to childElement.
-Script execution paused.
-Call stack:
- 0) appendElement (dom-breakpoints.html:12)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new child was added to its descendant div#childElement.
-Script execution resumed.
-
-Running: testRemoveChild
-Test that 'Subtree Modified' breakpoint is hit when removing a child.
-Remove grandchildElement.
-Script execution paused.
-Call stack:
- 0) removeElement (dom-breakpoints.html:44)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on div#rootElement, because its descendant div#grandchildElement was removed.
-Script execution resumed.
-
-Running: testInnerHTML
-Test that 'Subtree Modified' breakpoint is hit exactly once when setting innerHTML.
-Set childElement.innerHTML.
-Script execution paused.
-Call stack:
- 0) setInnerHTML (dom-breakpoints.html:50)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new child was added to its descendant div#childElement.
-Script execution resumed.
-Call breakDebugger, expect it to show up in next stack trace.
-Script execution paused.
-Call stack:
- 0) breakDebugger (dom-breakpoints.html:55)
- 1) (:1)
-Script execution resumed.
-
-Running: testModifyAttribute
-Test that 'Attribute Modified' breakpoint is hit when modifying attribute.
-Set 'Attribute Modified' DOM breakpoint on rootElement.
-Modify rootElement data-test attribute.
-Script execution paused.
-Call stack:
- 0) modifyAttribute (dom-breakpoints.html:18)
- 1) (:1)
-Paused on a "Attribute Modified" breakpoint set on div#rootElement.
-Script execution resumed.
-
-Running: testModifyAttrNode
-Test that 'Attribute Modified' breakpoint is hit when modifying Attr node.
-Set 'Attribute Modified' DOM breakpoint on rootElement.
-Modify rootElement data-test attribute.
-Script execution paused.
-Call stack:
- 0) modifyAttrNode (dom-breakpoints.html:24)
- 1) (:1)
-Paused on a "Attribute Modified" breakpoint set on div#rootElement.
-Script execution resumed.
-
-Running: testSetAttrNode
-Test that 'Attribute Modified' breakpoint is hit when adding a new Attr node.
-Set 'Attribute Modified' DOM breakpoint on rootElement.
-Modify rootElement data-foo attribute.
-Script execution paused.
-Call stack:
- 0) setAttrNode (dom-breakpoints.html:32)
- 1) (:1)
-Paused on a "Attribute Modified" breakpoint set on div#rootElement.
-Script execution resumed.
-
-Running: testModifyStyleAttribute
-Test that 'Attribute Modified' breakpoint is hit when modifying style attribute.
-Set 'Attribute Modified' DOM breakpoint on rootElement.
-Modify rootElement style.color attribute.
-Script execution paused.
-Call stack:
- 0) modifyStyleAttribute (dom-breakpoints.html:38)
- 1) (:1)
-Paused on a "Attribute Modified" breakpoint set on div#rootElement.
-Script execution resumed.
-
-Running: testRemoveNode
-Test that 'Node Removed' breakpoint is hit when removing a node.
-Set 'Node Removed' DOM breakpoint on elementToRemove.
-Remove elementToRemove.
-Script execution paused.
-Call stack:
- 0) removeElement (dom-breakpoints.html:44)
- 1) (:1)
-Paused on a "Node Removed" breakpoint set on div#elementToRemove.
-Script execution resumed.
-
-Running: testReload
-Test that DOM breakpoints are persisted between page reloads.
-Set 'Subtree Modified' DOM breakpoint on rootElement.
-Page reloaded.
-Append childElement to rootElement.
-Script execution paused.
-Call stack:
- 0) appendElement (dom-breakpoints.html:12)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on div#rootElement, because a new child was added to that node.
-Script execution resumed.
-
-Running: testInsertChildIntoAuthorShadowTree
-Test that 'Subtree Modified' breakpoint on author shadow root is hit when appending a child.
-Set 'Subtree Modified' DOM breakpoint on author shadow root.
-Append childElement to author shadow root.
-Script execution paused.
-Call stack:
- 0) appendElementToOpenShadowRoot (dom-breakpoints.html:79)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on #shadow-root, because a new child was added to that node.
-Script execution resumed.
-
-Running: testReloadWithShadowElementBreakpoint
-Test that shadow DOM breakpoints are persisted between page reloads.
-Set 'Subtree Modified' DOM breakpoint on outerElement.
-Page reloaded.
-Append childElement to outerElement.
-Script execution paused.
-Call stack:
- 0) appendElementToAuthorShadowTree (dom-breakpoints.html:72)
- 1) (:1)
-Paused on a "Subtree Modified" breakpoint set on div#outerElement, because a new child was added to that node.
-Script execution resumed.
-

Powered by Google App Engine
This is Rietveld 408576698