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

Side by Side Diff: LayoutTests/inspector/elements/edit/set-attribute.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> 5 <script>
6 6
7 function setAttribute(name, value) 7 function setAttribute(name, value)
8 { 8 {
9 var node = document.getElementById("node"); 9 var node = document.getElementById("node");
10 node.setAttribute(name, value); 10 node.setAttribute(name, value);
11 } 11 }
12 12
13 function removeAttribute(name) 13 function removeAttribute(name)
14 { 14 {
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 <body onload="runTest()"> 135 <body onload="runTest()">
136 <p> 136 <p>
137 Tests that elements panel updates dom tree structure upon setting attribute. 137 Tests that elements panel updates dom tree structure upon setting attribute.
138 </p> 138 </p>
139 139
140 <div id="node"></div> 140 <div id="node"></div>
141 141
142 </body> 142 </body>
143 </html> 143 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698