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

Side by Side Diff: LayoutTests/inspector/elements/highlight/highlight-dom-updates.html

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 src="../../http/tests/inspector/console-test.js"></script> 5 <script src="../../../http/tests/inspector/console-test.js"></script>
6 <script> 6 <script>
7 7
8 function appendChild(parentId, id) 8 function appendChild(parentId, id)
9 { 9 {
10 var e = document.createElement("span"); 10 var e = document.createElement("span");
11 e.id = id; 11 e.id = id;
12 document.getElementById(parentId).appendChild(e); 12 document.getElementById(parentId).appendChild(e);
13 } 13 }
14 14
15 function remove(id) 15 function remove(id)
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 </p> 169 </p>
170 170
171 <div id="container"> 171 <div id="container">
172 <div id="attrTest" attrFoo="foo"></div> 172 <div id="attrTest" attrFoo="foo"></div>
173 <div id="childTest"></div> 173 <div id="childTest"></div>
174 <div id="textTest"></div> 174 <div id="textTest"></div>
175 </div> 175 </div>
176 176
177 </body> 177 </body>
178 </html> 178 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698