Log Message
Unreviewed gardening. Remove skipped and broken inspector test. This is the last test relying on the old model interface.
* TestExpectations: * http/tests/inspector-protocol/resources/InspectorTest.js: (InspectorTest.initializeInspectorModels.console.error.window.onerror): Deleted. (InspectorTest.initializeInspectorModels.console.assert): Deleted. (InspectorTest.initializeInspectorModels): Deleted. * inspector-protocol/indexeddb/basics-expected.txt: Removed. * inspector-protocol/indexeddb/basics.html: Removed. * platform/efl/TestExpectations: * platform/gtk/TestExpectations: * platform/win/TestExpectations:
Modified Paths
- trunk/LayoutTests/ChangeLog
- trunk/LayoutTests/TestExpectations
- trunk/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js
- trunk/LayoutTests/platform/efl/TestExpectations
- trunk/LayoutTests/platform/gtk/TestExpectations
- trunk/LayoutTests/platform/win/TestExpectations
Removed Paths
- trunk/LayoutTests/inspector-protocol/indexeddb/
Diff
Modified: trunk/LayoutTests/ChangeLog (183663 => 183664)
--- trunk/LayoutTests/ChangeLog 2015-05-01 02:40:34 UTC (rev 183663)
+++ trunk/LayoutTests/ChangeLog 2015-05-01 03:42:28 UTC (rev 183664)
@@ -1,3 +1,20 @@
+2015-04-30 Joseph Pecoraro <[email protected]>
+
+ Unreviewed gardening. Remove skipped and broken inspector test.
+
+ This is the last test relying on the old model interface.
+
+ * TestExpectations:
+ * http/tests/inspector-protocol/resources/InspectorTest.js:
+ (InspectorTest.initializeInspectorModels.console.error.window.onerror): Deleted.
+ (InspectorTest.initializeInspectorModels.console.assert): Deleted.
+ (InspectorTest.initializeInspectorModels): Deleted.
+ * inspector-protocol/indexeddb/basics-expected.txt: Removed.
+ * inspector-protocol/indexeddb/basics.html: Removed.
+ * platform/efl/TestExpectations:
+ * platform/gtk/TestExpectations:
+ * platform/win/TestExpectations:
+
2015-04-30 Dean Jackson <[email protected]>
Expose -apple-system as a font family
Modified: trunk/LayoutTests/TestExpectations (183663 => 183664)
--- trunk/LayoutTests/TestExpectations 2015-05-01 02:40:34 UTC (rev 183663)
+++ trunk/LayoutTests/TestExpectations 2015-05-01 03:42:28 UTC (rev 183664)
@@ -84,7 +84,6 @@
webkit.org/b/133761 inspector-protocol/debugger/breakpoint-action-detach.html [ Skip ]
webkit.org/b/129639 inspector-protocol/dom/dom-search-crash.html [ Skip ]
-webkit.org/b/129327 inspector-protocol/indexeddb/basics.html [ Pass Failure ]
webkit.org/b/127414 inspector-protocol/page/deny-X-FrameOption.html [ Pass Failure ]
# These tests cause assertion failures in subsequent tests
Modified: trunk/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js (183663 => 183664)
--- trunk/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js 2015-05-01 02:40:34 UTC (rev 183663)
+++ trunk/LayoutTests/http/tests/inspector-protocol/resources/InspectorTest.js 2015-05-01 03:42:28 UTC (rev 183664)
@@ -158,121 +158,6 @@
window.eval(script);
}
-// FIXME: Move model tests off of the stub inspector page, and delete this function
-// since it's now implemented as Test.html. <https://webkit.org/b/129217>
-InspectorTest.initializeInspectorModels = function()
-{
- // Catch any errors and finish the test early.
- console.error = window._onerror_ = function()
- {
- InspectorTest.log(Array.prototype.join.call(arguments, ', '));
- InspectorTest.completeTest();
- };
-
- console.assert = function(assertion, message)
- {
- if (assertion)
- return;
-
- InspectorTest.log("ASSERT:" + message);
- InspectorTest.completeTest();
- };
-
- // Note: This function overwrites the InspectorFrontendAPI, so there's currently no
- // way to intercept the messages from the backend.
-
- var inspectorScripts = [
- "Base/WebInspector",
- "Base/Object",
-
- "Base/DOMUtilities",
- "Base/URLUtilities",
- "Base/Utilities",
-
- "Protocol/CSSObserver",
- "Protocol/DOMObserver",
- "Protocol/DebuggerObserver",
- "Protocol/InspectorBackend",
- "Protocol/InspectorFrontendAPI",
- "Protocol/InspectorFrontendHostStub",
- "Protocol/InspectorJSBackendCommands",
- "Protocol/InspectorObserver",
- "Protocol/InspectorWebBackendCommands",
- "Protocol/MessageDispatcher",
- "Protocol/PageObserver",
- "Protocol/RemoteObject",
- "Protocol/RuntimeObserver",
-
- "Models/BreakpointAction",
- "Models/SourceCode",
-
- "Models/Breakpoint",
- "Models/Color",
- "Models/ContentFlow",
- "Models/DOMNode",
- "Models/DOMStorageObject",
- "Models/DOMTree",
- "Models/ExecutionContext",
- "Models/ExecutionContextList",
- "Models/Frame",
- "Models/IndexedDatabase",
- "Models/IndexedDatabaseObjectStore",
- "Models/IndexedDatabaseObjectStoreIndex",
- "Models/Probe",
- "Models/ProbeSet",
- "Models/ProbeSetDataFrame",
- "Models/ProbeSetDataTable",
- "Models/Resource",
- "Models/ResourceCollection",
- "Models/Revision",
- "Models/Script",
- "Models/Setting",
- "Models/SourceCodeLocation",
- "Models/SourceCodeRevision",
- "Models/SourceMapResource",
- "Models/TextRange",
-
- "Controllers/CSSStyleManager",
- "Controllers/DOMTreeManager",
- "Controllers/DebuggerManager",
- "Controllers/FrameResourceManager",
- "Controllers/ProbeManager",
- "Controllers/RuntimeManager",
- "Controllers/RuntimeManager",
- "Controllers/StorageManager"
- ];
-
- // This corresponds to loading the scripts in Main.hml.
- for (var i = 0; i < inspectorScripts.length; ++i)
- InspectorTest.importScript("../../../../../Source/WebInspectorUI/UserInterface/" + inspectorScripts[i] + ".js");
-
- // The initialization should be in sync with WebInspector.loaded in Main.js.
- // FIXME: As soon as we can support all the observers and managers we should remove UI related tasks
- // from WebInspector.loaded, so that it can be used from the LayoutTests.
-
- InspectorFrontendHost.loaded();
-
- // Enable agents.
- InspectorAgent.enable();
-
- InspectorBackend.registerInspectorDispatcher(new WebInspector.InspectorObserver);
- InspectorBackend.registerPageDispatcher(new WebInspector.PageObserver);
- InspectorBackend.registerDOMDispatcher(new WebInspector.DOMObserver);
- InspectorBackend.registerDebuggerDispatcher(new WebInspector.DebuggerObserver);
- InspectorBackend.registerCSSDispatcher(new WebInspector.CSSObserver);
- if (InspectorBackend.registerRuntimeDispatcher)
- InspectorBackend.registerRuntimeDispatcher(new WebInspector.RuntimeObserver);
-
- WebInspector.frameResourceManager = new WebInspector.FrameResourceManager;
- WebInspector.storageManager = new WebInspector.StorageManager;
- WebInspector.domTreeManager = new WebInspector.DOMTreeManager;
- WebInspector.cssStyleManager = new WebInspector.CSSStyleManager;
- WebInspector.debuggerManager = new WebInspector.DebuggerManager;
- WebInspector.runtimeManager = new WebInspector.RuntimeManager;
- WebInspector.probeManager = new WebInspector.ProbeManager;
-}
-
-
window.addEventListener("message", function(event) {
try {
eval(event.data);
Modified: trunk/LayoutTests/platform/efl/TestExpectations (183663 => 183664)
--- trunk/LayoutTests/platform/efl/TestExpectations 2015-05-01 02:40:34 UTC (rev 183663)
+++ trunk/LayoutTests/platform/efl/TestExpectations 2015-05-01 03:42:28 UTC (rev 183664)
@@ -275,7 +275,6 @@
webkit.org/b/87661 http/tests/security/cross-origin-worker-indexeddb.html [ Skip ]
webkit.org/b/87661 http/tests/security/no-indexeddb-from-sandbox.html [ Skip ]
webkit.org/b/87661 crypto/subtle/rsa-indexeddb.html [ Skip ]
-webkit.org/b/87661 inspector-protocol/indexeddb/basics.html [ Skip ]
webkit.org/b/87661 fast/history/page-cache-indexed-closed-db.html [ Skip ]
webkit.org/b/87661 fast/history/page-cache-indexed-opened-db.html [ Skip ]
Modified: trunk/LayoutTests/platform/gtk/TestExpectations (183663 => 183664)
--- trunk/LayoutTests/platform/gtk/TestExpectations 2015-05-01 02:40:34 UTC (rev 183663)
+++ trunk/LayoutTests/platform/gtk/TestExpectations 2015-05-01 03:42:28 UTC (rev 183664)
@@ -2163,7 +2163,6 @@
webkit.org/b/107194 http/tests/security/cross-origin-worker-indexeddb.html [ Skip ]
webkit.org/b/107194 http/tests/security/no-indexeddb-from-sandbox.html [ Skip ]
webkit.org/b/107194 crypto/subtle/rsa-indexeddb.html [ Skip ]
-webkit.org/b/107194 inspector-protocol/indexeddb/basics.html [ Skip ]
webkit.org/b/107194 fast/history/page-cache-indexed-closed-db.html [ Skip ]
webkit.org/b/107194 fast/history/page-cache-indexed-opened-db.html [ Skip ]
Modified: trunk/LayoutTests/platform/win/TestExpectations (183663 => 183664)
--- trunk/LayoutTests/platform/win/TestExpectations 2015-05-01 02:40:34 UTC (rev 183663)
+++ trunk/LayoutTests/platform/win/TestExpectations 2015-05-01 03:42:28 UTC (rev 183664)
@@ -239,7 +239,6 @@
http/tests/security/cross-origin-worker-indexeddb.html [ Skip ]
http/tests/security/no-indexeddb-from-sandbox.html [ Skip ]
crypto/subtle/rsa-indexeddb.html [ Skip ]
-inspector-protocol/indexeddb/basics.html [ Skip ]
fast/history/page-cache-indexed-closed-db.html [ Skip ]
fast/history/page-cache-indexed-opened-db.html [ Skip ]
fast/history/page-cache-webdatabase-no-transaction-db.html [ Skip ]
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
