| Index: LayoutTests/inspector/sources/debugger/dom-breakpoints-editing-dom-from-inspector.html
|
| diff --git a/LayoutTests/inspector/sources/debugger/dom-breakpoints-editing-dom-from-inspector.html b/LayoutTests/inspector/sources/debugger/dom-breakpoints-editing-dom-from-inspector.html
|
| deleted file mode 100644
|
| index 7c125ece0383d274e846e0c2409187e0eda8f274..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/inspector/sources/debugger/dom-breakpoints-editing-dom-from-inspector.html
|
| +++ /dev/null
|
| @@ -1,54 +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 test()
|
| -{
|
| -
|
| - var pane = WebInspector.domBreakpointsSidebarPane;
|
| - InspectorTest.runDebuggerTestSuite([
|
| - function testRemoveNode(next)
|
| - {
|
| - InspectorTest.addResult("Testing NodeRemoved DOM breakpoint.");
|
| - InspectorTest.nodeWithId("elementToRemove", step2);
|
| -
|
| - function step2(node)
|
| - {
|
| - pane._setBreakpoint(node, pane._breakpointTypes.NodeRemoved, true);
|
| - InspectorTest.addResult("Set NodeRemoved DOM breakpoint.");
|
| - node.removeNode(next);
|
| - }
|
| - },
|
| -
|
| - function testModifyAttribute(next)
|
| - {
|
| - InspectorTest.addResult("Testing AttributeModified DOM breakpoint.");
|
| - InspectorTest.nodeWithId("rootElement", step2);
|
| -
|
| - function step2(node)
|
| - {
|
| - pane._setBreakpoint(node, pane._breakpointTypes.AttributeModified, true);
|
| - InspectorTest.addResult("Set AttributeModified DOM breakpoint.");
|
| - node.setAttribute("title", "a title", next);
|
| - }
|
| - }
|
| - ]);
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="runTest()">
|
| -<p>
|
| -Tests that DOM debugger will not crash when editing DOM nodes from the Web Inspector. <a href="https://code.google.com/p/chromium/issues/detail?id=249655">Chromium bug 249655</a>
|
| -</p>
|
| -
|
| -<div id="rootElement" style="color: red">
|
| -<div id="elementToRemove"></div>
|
| -</div>
|
| -
|
| -</body>
|
| -</html>
|
|
|