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

Side by Side Diff: LayoutTests/inspector/elements/edit/mutate-unknown-node.html-disabled

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/elements-test.js"></script> 4 <script src="../../../http/tests/inspector/elements-test.js"></script>
5 <script> 5 <script>
6 6
7 function appendChild() 7 function appendChild()
8 { 8 {
9 var hidden = document.getElementById("hidden"); 9 var hidden = document.getElementById("hidden");
10 var child = document.createElement("div"); 10 var child = document.createElement("div");
11 child.setAttribute("id", "appended"); 11 child.setAttribute("id", "appended");
12 hidden.appendChild(child); 12 hidden.appendChild(child);
13 } 13 }
14 14
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 Tests that elements panel does not receive events upon changes to the undiscover ed nodes. 79 Tests that elements panel does not receive events upon changes to the undiscover ed nodes.
80 </p> 80 </p>
81 81
82 <div> 82 <div>
83 <div id="hidden"> 83 <div id="hidden">
84 </div> 84 </div>
85 </div> 85 </div>
86 86
87 </body> 87 </body>
88 </html> 88 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698