Index: LayoutTests/inspector/elements/attribute-modified-ns.html |
diff --git a/LayoutTests/inspector/elements/attribute-modified-ns.html b/LayoutTests/inspector/elements/attribute-modified-ns.html |
index aa350f6e5bca25c1256f8f03d83d3c4a5f2ee435..8f8f32207638707d525610049a61ef69f8e45488 100644 |
--- a/LayoutTests/inspector/elements/attribute-modified-ns.html |
+++ b/LayoutTests/inspector/elements/attribute-modified-ns.html |
@@ -37,12 +37,12 @@ function test() |
{ |
function callback() |
{ |
- WebInspector.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, callback); |
+ InspectorTest.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, callback); |
InspectorTest.addResult("===== On attribute set ====="); |
InspectorTest.dumpElementsTree(targetNode); |
next(); |
} |
- WebInspector.domModel.addEventListener(WebInspector.DOMModel.Events.AttrModified, callback); |
+ InspectorTest.domModel.addEventListener(WebInspector.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() |
{ |
- WebInspector.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrRemoved, callback); |
+ InspectorTest.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrRemoved, callback); |
InspectorTest.addResult("=== On attribute removed ==="); |
InspectorTest.dumpElementsTree(targetNode); |
next(); |
} |
- WebInspector.domModel.addEventListener(WebInspector.DOMModel.Events.AttrRemoved, callback); |
+ InspectorTest.domModel.addEventListener(WebInspector.DOMModel.Events.AttrRemoved, callback); |
InspectorTest.evaluateInPage("removeAttribute('xlink:href')"); |
}, |
]); |