X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=LayoutTests%2Fhttp%2Ftests%2Finspector-protocol%2Fresources%2FInspectorTest.js;h=8e0fb6e6eda2a16d0050c43007c986d342c22b2a;hp=f496364a115bbfd4515d36b7490eef8b865b3b77;hb=95ee37ba528c1a77f6e2138ecbebe5b560324144;hpb=80ee727bc3385046d9863957637ec4f74ac8b055 diff --git a/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js b/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js index f496364..8e0fb6e 100644 --- a/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js +++ b/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js @@ -75,6 +75,17 @@ InspectorTest.log = function(message) } /** +* Logs an assert message to document. +* @param {boolean} condition +* @param {string} message +*/ +InspectorTest.assert = function(condition, message) +{ + var status = condition ? "PASS" : "FAIL"; + this.sendCommand("Runtime.evaluate", { "expression": "log(" + JSON.stringify(status + ": " + message) + ")" } ); +} + +/** * Logs message directly to process stdout via alert function (hopefully followed by flush call). * This message should survive process crash or kill by timeout. * @param {string} message @@ -130,6 +141,7 @@ InspectorTest.importInspectorScripts = function() "Setting", "PageObserver", "DOMObserver", + "CSSObserver", "FrameResourceManager", "RuntimeManager", "Frame", @@ -143,7 +155,9 @@ InspectorTest.importInspectorScripts = function() "ContentFlow", "DOMTree", "ExecutionContext", - "ExecutionContextList" + "ExecutionContextList", + "CSSStyleManager", + "Color" ]; for (var i = 0; i < inspectorScripts.length; ++i) InspectorTest.importScript("../../../../../Source/WebInspectorUI/UserInterface/" + inspectorScripts[i] + ".js"); @@ -154,9 +168,11 @@ InspectorTest.importInspectorScripts = function() InspectorBackend.registerPageDispatcher(new WebInspector.PageObserver); InspectorBackend.registerDOMDispatcher(new WebInspector.DOMObserver); + InspectorBackend.registerCSSDispatcher(new WebInspector.CSSObserver); WebInspector.frameResourceManager = new WebInspector.FrameResourceManager; WebInspector.domTreeManager = new WebInspector.DOMTreeManager; + WebInspector.cssStyleManager = new WebInspector.CSSStyleManager; InspectorFrontendHost.loaded(); }