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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/attribute-modified-ns.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/attribute-modified-ns.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/attribute-modified-ns.html b/third_party/WebKit/LayoutTests/inspector/elements/attribute-modified-ns.html
index 8f8f32207638707d525610049a61ef69f8e45488..8b6a2182b20843d72006b2c6357a23bec4e9fdce 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/attribute-modified-ns.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/attribute-modified-ns.html
@@ -37,12 +37,12 @@ function test()
{
function callback()
{
- InspectorTest.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, callback);
+ InspectorTest.domModel.removeEventListener(SDK.DOMModel.Events.AttrModified, callback);
InspectorTest.addResult("===== On attribute set =====");
InspectorTest.dumpElementsTree(targetNode);
next();
}
- InspectorTest.domModel.addEventListener(WebInspector.DOMModel.Events.AttrModified, callback);
+ InspectorTest.domModel.addEventListener(SDK.DOMModel.Events.AttrModified, callback);
InspectorTest.evaluateInPage("setAttribute('http://www.w3.org/1999/xlink', 'xlink:href', 'changed-url')");
},
@@ -50,12 +50,12 @@ function test()
{
function callback()
{
- InspectorTest.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrRemoved, callback);
+ InspectorTest.domModel.removeEventListener(SDK.DOMModel.Events.AttrRemoved, callback);
InspectorTest.addResult("=== On attribute removed ===");
InspectorTest.dumpElementsTree(targetNode);
next();
}
- InspectorTest.domModel.addEventListener(WebInspector.DOMModel.Events.AttrRemoved, callback);
+ InspectorTest.domModel.addEventListener(SDK.DOMModel.Events.AttrRemoved, callback);
InspectorTest.evaluateInPage("removeAttribute('xlink:href')");
},
]);

Powered by Google App Engine
This is Rietveld 408576698