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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-commit-editing.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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
Index: third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-commit-editing.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-commit-editing.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-commit-editing.html
index bb4275ba4f6202124f2f282668f819ed4f169811..ad0adb4b1bb721b90fb6d1875f736ce9031e20d3 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-commit-editing.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/styles-commit-editing.html
@@ -38,27 +38,27 @@ function test()
// Commit editing.
treeElement.valueElement.textContent = "green";
treeElement.valueElement.firstChild.select();
- InspectorTest.addSniffer(WebInspector.StylePropertiesSection.prototype, "_afterUpdateFinishedForTest", next);
+ InspectorTest.addSniffer(Elements.StylePropertiesSection.prototype, "_afterUpdateFinishedForTest", next);
treeElement.valueElement.dispatchEvent(InspectorTest.createKeyEvent("Enter"));
},
function testNewPropertyEditorIsCreated(next)
{
var blankTreeElement = treeOutline.rootElement().childAt(1);
- if (!WebInspector.isBeingEdited(blankTreeElement.nameElement)) {
+ if (!UI.isBeingEdited(blankTreeElement.nameElement)) {
InspectorTest.addResult("No new property editor active!");
InspectorTest.completeTest();
return;
}
// Test Styles pane editor looping.
- InspectorTest.addSniffer(WebInspector.StylePropertiesSection.prototype, "_afterUpdateFinishedForTest", next);
+ InspectorTest.addSniffer(Elements.StylePropertiesSection.prototype, "_afterUpdateFinishedForTest", next);
blankTreeElement.nameElement.dispatchEvent(InspectorTest.createKeyEvent("Enter"));
},
function testCycleThroughPropertyEditing(next)
{
- if (!WebInspector.isBeingEdited(treeOutline.firstChild().nameElement)) {
+ if (!UI.isBeingEdited(treeOutline.firstChild().nameElement)) {
InspectorTest.addResult("Original property name editor not active!");
InspectorTest.completeTest();
return;

Powered by Google App Engine
This is Rietveld 408576698