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

Side by Side Diff: LayoutTests/inspector/sources/debugger/promise-pane.html

Issue 1173363012: DevTools: Network panel filter bar overlaps after select resource row. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: test fixed 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
« no previous file with comments | « no previous file | Source/devtools/front_end/console/ConsoleView.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/debugger-test.js"></script> 4 <script src="../../../http/tests/inspector/debugger-test.js"></script>
5 <script> 5 <script>
6 var p1, p2, p3; 6 var p1, p2, p3;
7 7
8 function testFunction() 8 function testFunction()
9 { 9 {
10 debugger; // <- will turn on async call stacks here. 10 debugger; // <- will turn on async call stacks here.
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ]; 96 ];
97 97
98 function step4() 98 function step4()
99 { 99 {
100 var text = searchValues.shift(); 100 var text = searchValues.shift();
101 if (!text) { 101 if (!text) {
102 InspectorTest.completeDebuggerTest(); 102 InspectorTest.completeDebuggerTest();
103 return; 103 return;
104 } 104 }
105 InspectorTest.addResult("\nSetting search value: " + text); 105 InspectorTest.addResult("\nSetting search value: " + text);
106 promisePane._filter._textFilterUI.setValue(text); 106 promisePane._textFilterUI.setValue(text);
107 promisePane._refresh(); 107 promisePane._refresh();
108 dumpPromiseDataGrid(step4); 108 dumpPromiseDataGrid(step4);
109 } 109 }
110 } 110 }
111 111
112 </script> 112 </script>
113 </head> 113 </head>
114 114
115 <body onload="runTest()"> 115 <body onload="runTest()">
116 <p> 116 <p>
117 Tests promise pane view. 117 Tests promise pane view.
118 </p> 118 </p>
119 </body> 119 </body>
120 </html> 120 </html>
OLDNEW
« no previous file with comments | « no previous file | Source/devtools/front_end/console/ConsoleView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698