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

Unified Diff: LayoutTests/http/tests/inspector/elements-test.js

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/inspector/audits/audits-panel-functional-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/inspector/elements-test.js
diff --git a/LayoutTests/http/tests/inspector/elements-test.js b/LayoutTests/http/tests/inspector/elements-test.js
index e2ad4b72effcb0f1780c92c72fedab31755f5bee..0282037f334602f7220e4c15d331abeae3ce2226 100644
--- a/LayoutTests/http/tests/inspector/elements-test.js
+++ b/LayoutTests/http/tests/inspector/elements-test.js
@@ -356,10 +356,10 @@ function printStyleSection(section, omitLonghands, includeSelectorGroupMarks)
if (!section)
return;
InspectorTest.addResult("[expanded] " + (section.element.classList.contains("no-affect") ? "[no-affect] " : ""));
- var chainEntries = section.titleElement.querySelectorAll(".media-list .media");
+ var chainEntries = section._titleElement.querySelectorAll(".media-list .media");
chainEntries = Array.prototype.slice.call(chainEntries);
- if (section.titleElement.children[1])
- chainEntries.push(section.titleElement.children[1]);
+ if (section._titleElement.children[1])
+ chainEntries.push(section._titleElement.children[1]);
for (var j = 0; j < chainEntries.length; ++j) {
var chainEntry = chainEntries[j];
« no previous file with comments | « no previous file | LayoutTests/inspector/audits/audits-panel-functional-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698